Stefanie Molin
Stefanie Molin
Here's a more complete solution in case anyone stumbles across this in the future. Note that `flattenedSlideNumber` is what you would change in your code: ```javascript const flattenedSlideNumber = 20;...
Working on descendants of `BaseLibSVM` (`SVC`, `OneClassSVM`, `SVR`, `NuSVR`, `NuSVC`).
Working on `VotingClassifier` and `VotingRegressor`.
Working on `SelectFdr`, `SelectFpr`, `SelectFromModel`, `SelectFwe`, `SelectKBest`, `SelectPercentile`, `GenericUnivariateSelect`, `SequentialFeatureSelector`, `RFE`, and `RFECV`.
@jeremiedbb – For a parameter that can be a callable, a specific string, or a string that is dependent on the estimators, how would we write the constraint? Specifically for...
@jeremiedbb – Another question. [This parameter](https://github.com/scikit-learn/scikit-learn/blob/main/sklearn/feature_selection/_from_model.py#L114-L118) must be an integer unless it is -inf/inf, but it can't be 0. I tried to do this: ```python [Interval(Integral, None, 0, closed="left"), Interval(Integral,...
> Working on `SelectFdr`, `SelectFpr`, `SelectFromModel`, `SelectFwe`, `SelectKBest`, `SelectPercentile`, `GenericUnivariateSelect`, `SequentialFeatureSelector`, `RFE`, and `RFECV`. `SelectFromModel` is blocked by https://github.com/scikit-learn/scikit-learn/pull/24048 – PRs open for the others. Working on `FeatureHasher`, `FunctionTransformer`, `HashingVectorizer`,...
Working on `IterativeImputer`, `LabelPropagation`, `LabelSpreading`, `LatentDirichletAllocation`, and `PolynomialFeatures`.
A couple of questions on this one: 1. Do you mean editing lines like [these](https://github.com/mwaskom/seaborn/blob/master/seaborn/rcmod.py#L246-L247) in `rcmod.py`? Then, if someone calls `sns.set_theme()` before plotting, even with `despine=False` there will be...
This PR populates the `label` attribute on each of the bars in the bar container (i.e., to be able to call `get_label()` on the bar). The current behavior gives them...