Henry Hammond

Results 10 comments of Henry Hammond

I've been working on an implementation of regression splines (piecewise linear and restricted cubic splines with truncated power basis) that I'd be happy to contribute to a StatsModelsExtras module. I've...

I hadn't built this with a `to_excel` function in mind but I think it could be useful. If could you give me a few more details of your use case...

Have you tried using the `to_frame` method yet? Something like the following should work: ``` PrettyPandas(df).total().to_frame().to_excel(...) ``` One issue that I'm not sure is solvable is that you will lose...

I did some digging and it looks like this is actually a pandas bug, but I'll try to make the API for pretty pandas easier to work with. The `Styler`...

Pandas issue tracking the `Styler.to_excel` behaviour https://github.com/pandas-dev/pandas/issues/21221

There already is colour-map support and min, max background support in the Pandas API http://pandas.pydata.org/pandas-docs/stable/style.html#Building-Styles. They have some neat functionality implemented. Since `PrettyPandas` subclasses `pandas.core.Styler` we get all that stuff...

Also I think I should include those examples in the documentation so that people are aware

Bumping this issue. As a newcomer to dataform from dbt this is something I would use every day. Defer saves a lot of money in compute and makes development processes...

I'm looking for a nicer version of the same solution. Here's a bit of a hack that works: ``` dataform run \ --actions my_model \ --schema-suffix $(whoami) ``` You can...

I'll give it a try! That extension looks great, the DAG view is much nicer than what I've put together. I appreciate the inline errors and cost estimates too