mkleinbort-ic

Results 86 comments of mkleinbort-ic

Hi there... checking in if this will be implemented within the next 3-12 months. The ask is to have "nested" groups - namely ![image](https://github.com/dagster-io/dagster/assets/112868935/d7afce16-fcc6-41be-a060-9ed82a9b74d8) Last time this was discused we...

Digging into it a bit, it seems `px.strip` uses the code for box-plots under the hood, specificaly the part that renders all the `boxpoints` https://github.com/plotly/plotly.py/blob/696c30bf0131e8786a9dce050b772c1063550c6f/packages/python/plotly/plotly/express/_chart_types.py#L677 ```python return make_figure( args=locals(), constructor=go.Box,...

I see this was clarified in https://github.com/predict-idlab/plotly-resampler/issues/195 Any ambition to support other "scatter like" trace types?

Yes, I was just looking for this feature today - please implement it

Yes, this feature would be great. In my case I have multiple processes running polars operations at the same time on the same server, and when the steps "sync" the...

streamlit-antd-components's Cascader might be a fix.

Just a note that if you do: ```python import polars as pl df = pl.DataFrame({ 'A': pl.Series([1,2, -3], dtype=pl.Int32), 'B': pl.Series([0.2,0.5,1.5], dtype=pl.Float64), 'C': pl.Series([0.21564,0.51,1.55], dtype=pl.Float32), 'D': pl.Series([1,2,3], dtype=pl.UInt64), 'E': ['a',...