Stefan Krawczyk

Results 397 comments of Stefan Krawczyk

I'm not that versed with the SchemaModel classes, but taking a further step back, would it make sense to have a more granular level, i.e. a "value check" over primitive...

@ropeladder to be test driven about this what other tests would be relevant to add: Should fail & have clear error messages: 1. creating a dataframe from two or more...

> On (3) it's definitely worth clarifying this in the code and in the docs. I was blissfully trying to output series of different frequencies until it occurred to me...

Thanks for the tests. So in your example, naively creating a dataframe from the initial columns does work but the result isn't useful: ```python df = pd.DataFrame(initial_columns) ``` outputs: ```...

Okay my goal is to have something by the end of this week barring no major disruptions that will minimally: 1. Warn if there are index type mismatches. 2. Require...

@ropeladder I'm going to close this since with `1.11.0` we now provide warnings and the option to use a strict index dataframe builder. Please re-open if there's more we could...

I think there is a benefit to being explicit. Why not do: ```python @config.when_not_in(region=['us', 'ca']) def some_fn__default() -> ...: pass ``` ?

@ropeladder just to confirm my understanding: 1. is your assumption that column order maps directly to function parameter arguments? 2. would these tables & dataframes be purpose built for input...

@elijahbenizzy any updates on this?