Joel Ostblom
Joel Ostblom
I don't think there is anyway to target just R-kernel notebooks with those shortcuts so they would also be active in Python notebooks. To target specific kernels youwould need something...
Yeah that makes sense. Maybe the extension could fill the placeholder text dynamically depending on the url of the first remote it finds in the repo? But I understand if...
> TreeExplainer with feature\_dependence="tree\_path\_dependent" does not depend on the training set size, only on the number and depth of the trees in the model. @slundberg I have run into issues...
> My guess is that while the max_depth of your models is 10, the random forest does not build complete depth-10 trees until it has a lot of training data....
Ah ok, @slundberg you're right, the trees do have different number of leaves in them. ```py [m1_est.get_n_leaves() for m1_est in m1.estimators_] ## [189, 222, 182, 229, 185, 180, 260, 192,...
Thanks for your contribution @rahul-raoniar ! I was looking through the gallery page and I can see that there is already an [example of adding marginal histograms](https://altair-viz.github.io/gallery/scatter_marginal_hist.html), as well as...
Thanks, A fix for this has been suggested in https://github.com/altair-viz/altair/pull/2683
This is unfortunately a bug in Vega-Lite https://github.com/vega/vega-lite/issues/6991. Vega-Lite plots the data in the observations in the order they appear in the data, so a workaround is to sort the...
1. I don't think that class is used directly, rather you use `alt.selection_` as in the documentation you linked 2. You can't have dynamic axis title/labels https://github.com/altair-viz/altair/issues/2011#issuecomment-597781332, but you could...
Great, thanks @mattijn ! I will try this out when starting to work on the other PR (and also try to experiment with the additional example). Could you rebase this...