Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add support for Category plots with error bars (#1412)
- Wasn't adding the error bars in this case - Needed for deephaven/deephaven-core#2156 to work - Needs deephaven/deephaven-core#4202 - Tested with the snippet in the ticket to create the plot: ``` from deephaven.plot.figure import Figure from deephaven.plot import PlotStyle from deephaven import new_table from deephaven.column import int_col, string_col source = new_table([ string_col("Categories", ["A", "B", "C"]), int_col("Categories2", [1, 2, 3]), int_col("Values", [9, 10, 11]), int_col("LowerError", [8, 9, 10]), int_col("UpperError", [10, 11, 12]) ]) v2_plot = Figure().plot_cat(series_name="Categories Plot v2", t=source, category="Categories2", y="Values", y_low="LowerError", y_high="UpperError").show() ``` - Also tested OHLC and existing Bar plots from the core/docs examples to ensure they looked the same
- Loading branch information