Create a strip plot with `dx.strip`: ``` import plotly.express as px from deephaven.pandas import to_table tips = to_table(px.data.tips()) bill_distr = dx.strip(tips, x="total_bill", by="day") ``` The frame of the plot and axis labels will render, but the points themselves do not show up: <img width="865" alt="Screenshot 2024-06-13 at 10 10 58 AM" src="https://github.com/deephaven/deephaven-plugins/assets/80283343/bab1d690-9ade-4112-8dec-76f1440902cc"> If you include a color explicitly: ``` bill_distr = dx.strip(tips, x="total_bill", by="day", color_discrete_sequence=["red"]) ``` The plot will show up correctly: <img width="864" alt="Screenshot 2024-06-13 at 10 11 13 AM" src="https://github.com/deephaven/deephaven-plugins/assets/80283343/ac3ad1d1-ba16-4b8d-ab5b-994a050eba9e">