Mattijn van Hoek

Results 279 comments of Mattijn van Hoek

I just noticed your comment @ChristopherDavisUCI, but ``` ["child__column_distance", "layer_0"], ``` Isn't equal to ``` "child__column_distancelayer_0", ``` Am I right in understanding your comment is that the currently defined altair-views...

Ok! More clear now. I'll subscribe to #8663 to see how this lands in VL👍

If I'm not misunderstanding things, than this issue is fixed by #8733, see https://github.com/vega/vega-lite/pull/8733#issuecomment-1451337875. Please re-open if I'm wrong on this.

Plot recently introduced support for this using a `linearRegressionX` and `linearRegressionY` mark, docs with examples [here](https://observablehq.com/@observablehq/plot-linear-regression), related PR [here](https://github.com/observablehq/plot/issues/168). It has adopted a few functions from the [jstat](https://github.com/jstat/jstat) library. As...

Thank you for the suggestion @btabram! You already provide a textual description how this can be of benefit for you and others, that is nice, but it would be great...

Thanks for adding context. In your case I think this should work temporarily: ```python with alt.data_transformers.enable(consolidate_datasets=False): print(result.json(encoder=str)) ``` Related is this issue: https://github.com/altair-viz/altair/issues/2199. And the interesting thing is, if we...

The intended behavior of OP might be fixed by this code change: https://github.com/altair-viz/altair/pull/3377#discussion_r1535526343. @btabram, could you have a look if Altair version 5.3 provides the behavior you are looking for?

After re-reading my comment in the linked issue, I think that was indeed what I had in mind at that time. Not sure if it still make sense. Regarding `to_**()`/`write_**()`....

When looking to the current code base it make sense to keep the `.save()` method to save chart definitions to different formats. Also with the current code base we have...

Thanks for the clarification @ChristopherDavisUCI, that make sense for #2732. The remaining properties are indeed not available as Property Setter, but it is still useful to have an alias I...