Peter Tonner

Results 8 comments of Peter Tonner

interesting, I didn't know that was possible! I this this could work, but there's a couple details I'm not clear on. For one thing, it looks like `d()` is treated...

Okay thanks for taking the time on this already! I appreciate all the feedback already I played around a bit to see about a nested dictionary mapping onto mutations ```python...

Actually playing around with `FactorValues` maybe yields something useful? Doing this ```python def M(data: pandas.Series): def encoder(*args, **kwargs): return pandas.get_dummies(intermediate, drop_first=True) return FactorValues(data, kind="categorical", encoder=encoder) ``` means I can run...

No worries on the delay! I'll have to get back to you about the errors, I need to recreate the environment I was testing in. But for your suggestion, it's...

Thanks that all sounds good. I actually discovered euporie will execute autimatically if it's a multiline string, which covers 80-90% of my needs. I can patch things with the other...

Actually need to reopen this b/c I realized I was wrong, and I still need this escape code even with multiline strings I'm having trouble figuring out how to write...

Just wanted to chime in that I've looked into the `mgcv` source in the past and also found it fairly dense. But after reviewing the [docs](https://stat.ethz.ch/R-manual/R-devel/library/mgcv/html/te.html) for `te` and reviewing...

A couple more thoughts here: I started looking into how you might implement this in bamb/formulae, but I'm not sure how you would handle a formula term that has multiple...