You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Try to not have duplicate headers, Pandas automatically appends numbers to duplicate colummns, so if that is not what you want, try to have unique column headers
Plot API
Scatter Plot
Endpoint:/plot/scatter
Format:x : y
Example Data:
Errorbar Plot
Endpoints:
/plot/errorbar1x → x : y : error x
/plot/errorbar1y → x : y : error y
/plot/errorbar2xy → x : y : error x : error y
Bar Graph
Endpoint:/plot/bar
Format:
Column 1: Data
Column 2: Labels
Pie Chart
Endpoint:/plot/pie
Format:
Column 1: Category
Column 2: Percentage
Boxplot
Endpoint:/plot/boxplot
Format:
Column 1: Category
Column 2: Value
Single Histogram
Endpoints:
/plot/eqhistogram
/plot/varyhistogram
Formats:
Single file → Data → Counts/Frequencies
Two files → Data, Weights → Counts/Frequencies : Bins
Other Parameters:
bins:
Integer (e.g., bins=10): Automatically bins data into evenly spaced intervals.
List (e.g., bins=[1, 2, 5]): Uses exact numbers for bin spacings.
Heatmap and Contour Map (CSV Format)
Endpoints:
/plot/imshowhmap
/plot/pmeshhmap
/plot/pmeshfunchmap
/plot/imshowhmap
/plot/contour
Data Format:
Matrices must have a single header value "m" to distinguish them from ordinary data.