pandera.schemas.DataFrameSchema¶
-
class
pandera.schemas.
DataFrameSchema
(columns=None, checks=None, index=None, pandas_dtype=None, transformer=None, coerce=False, strict=False, name=None, ordered=False)[source]¶ A light-weight pandas DataFrame validator.
Initialize DataFrameSchema validator.
- Parameters
columns (mapping of column names and column schema component.) – a dict where keys are column names and values are Column objects specifying the datatypes and properties of a particular column.
checks (
Union
[Check
,Hypothesis
,List
[Union
[Check
,Hypothesis
]],None
]) – dataframe-wide checks.index – specify the datatypes and properties of the index.
pandas_dtype (
Union
[str
,type
,PandasDtype
,ExtensionDtype
,dtype
,None
]) – datatype of the dataframe. This overrides the data types specified in any of the columns. If a string is specified, then assumes one of the valid pandas string values: http://pandas.pydata.org/pandas-docs/stable/basics.html#dtypes.transformer (
Optional
[Callable
]) – a callable with signature: pandas.DataFrame -> pandas.DataFrame. If specified, calling validate will verify properties of the columns and return the transformed dataframe object.coerce (
bool
) – whether or not to coerce all of the columns on validation.strict (
Union
[bool
,str
]) – ensure that all and only the columns defined in the schema are present in the dataframe. If set to ‘filter’, only the columns in the schema will be passed to the validated dataframe. If set to filter and columns defined in the schema are not present in the dataframe, will throw an error.ordered (
bool
) – whether or not to validate the columns order.
- Raises
SchemaInitError – if impossible to build schema from parameters
- Examples
>>> import pandera as pa >>> >>> schema = pa.DataFrameSchema({ ... "str_column": pa.Column(pa.String), ... "float_column": pa.Column(pa.Float), ... "int_column": pa.Column(pa.Int), ... "date_column": pa.Column(pa.DateTime), ... })
Use the pandas API to define checks, which takes a function with the signature:
pd.Series -> Union[bool, pd.Series]
where the output series contains boolean values.>>> schema_withchecks = pa.DataFrameSchema({ ... "probability": pa.Column( ... pa.Float, pa.Check(lambda s: (s >= 0) & (s <= 1))), ... ... # check that the "category" column contains a few discrete ... # values, and the majority of the entries are dogs. ... "category": pa.Column( ... pa.String, [ ... pa.Check(lambda s: s.isin(["dog", "cat", "duck"])), ... pa.Check(lambda s: (s == "dog").mean() > 0.5), ... ]), ... })
See here for more usage details.
Attributes
coerce
Whether to coerce series to specified type.
dtype
A pandas style dtype dict where the keys are column names and values are pandas dtype for the column.
ordered
Whether or not to validate the columns order.
pandas_dtype
Get the pandas dtype property.
pdtype
PandasDtype of the dataframe.
Methods
Initialize DataFrameSchema validator.
Create a copy of the
DataFrameSchema
with extra columns.Coerce dataframe to the type specified in pandas_dtype.
Generate an example of a particular size.
Create DataFrameSchema from yaml file.
Same as the
dtype
property, but expands columns whereregex == True
based on the supplied dataframe.Removes columns from a
DataFrameSchema
and returns a new copy.Rename columns using a dictionary of key-value pairs.
A method for resetting the
Index
of aDataFrameSchema
Select subset of columns in the schema.
A method for setting the
Index
of aDataFrameSchema
, via an existingColumn
or list of columns.Create a
hypothesis
strategy for generating a DataFrame.Create DataFrameSchema from yaml file.
Write DataFrameSchema to yaml file.
Create copy of a
DataFrameSchema
with updated column properties.Create copy of a
DataFrameSchema
with updated column properties.Check if all columns in a dataframe have a column in the Schema.
Alias for
DataFrameSchema.validate()
method.