Niels Bantilan

Results 222 comments of Niels Bantilan

thanks for reporting this @aartaria, this is definitely a bug! don't exactly remember now why that `to_numpy` call is there, can you see which unit tests fail if you remove...

https://github.com/unionai-oss/pandera/pull/856 fixed this apparantly, but just gonna keep this open, since #856 didn't add unit tests for the changes

Hi @pprados just so I understand the use case, why are you using `NewType` instead of using `pa.typing.DataFrame[My_schema]` directly (or a type alias `MyType = pa.typing.DataFrame[My_schema]`?

thanks @bendnorman, please feel free to make a PR for this, the part of the codebase you linked is exactly where the changes need to happen

thanks for elaborating @ericmjl! I think it would be a useful feature to offer `to_script` functionality for `SchemaModel` objects. Currently, the way this is done for `DataFrameSchema` objects is the...

> My question would be: can we offload the data "inference" to one of the many data exploration libraries and export its results to a pandera schema? There're trade-offs associated...

hey @tbsexton, as discussed in https://github.com/pandera-dev/pandera/issues/764#issuecomment-1073069161, the first use-case is fulfilled with the `pandas_engine.PydanticModel` type: > Workflow to treat pydantic basemodel-like objects as row-centric view of data, and pandera schemas...

@ghilesmeddour let me know if you have the capacity to make a contribution here!

thanks @aiwalter ! adding the _help wanted_ tag here

> A from_record method which allows you to create a typed dataframe this is especially usefull for writing unit tests. I'm open to supporting this! Basically the pandera [`DataFrame`](https://github.com/pandera-dev/pandera/blob/master/pandera/typing/pandas.py#L58) type...