Jonathan Taylor
Jonathan Taylor
Wondering how hard it is to specify a new format pairing? Can you point to code to specify, e.g. Rmd pairing?
### Code of Conduct A working candidate for https://github.com/rasbt/mlxtend/issues/833 ### Description ### Related issues or pull requests ### Pull Request Checklist - [ ] Added a note about the modification...
#### Describe the workflow you want to enable I'd like to make it easier to do best subsets with categorical features -- for simplicity let's start by assuming an additive...
- Instead of filling with zeros in `_flatten_mesh` and `generate_X_grid` create an X matrix with constant rows given by the midpoint of the edge_knots so they values will be valid....
It seems categorical variables must contain 0 as one of the values. This is apparent in `partial_dependence`: ```{python} import numpy as np from pygam import LinearGAM, s, f X =...
Reading the code I notice the knots in `pygam.utils.b_spline_basis` are equi-spaced rather than being selected from quantiles as e.g. `gam::bs/ns` in R. Is this just because the penalty matrix is...
#### Describe the bug Not sure if this is a bug or intended. I've tried searching issues but couldn't find a similar issue. When passing a dataframe as `exog` with...
This fixes https://github.com/JamesYang007/adelie/issues/144 But it feels like an even simpler fix is to just set `grad=np.zeros(p, dtype=dtype)` because that is what is going to happen anyways. Or is there a...