pandera.api.geopandas.container.GeoDataFrameSchema

class pandera.api.geopandas.container.GeoDataFrameSchema(columns=None, checks=None, parsers=None, index=None, dtype=None, coerce=False, strict=False, name=None, ordered=False, unique=None, report_duplicates='all', unique_column_names=False, add_missing_columns=False, title=None, description=None, metadata=None, drop_invalid_rows=False)[source]

Subclass of DataFrameSchema that returns a geopandas.GeoDataFrame from validate(), example(), and strategy().

Use the same constructor arguments as DataFrameSchema (columns, checks, index, etc.). Validation uses the pandas backend; the result is coerced to a GeoDataFrame so geometry columns and CRS metadata are preserved for geospatial workflows.

Requires the geopandas extra.

Library-agnostic base class for DataFrameSchema definitions.

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, list[Union[Check, Hypothesis]], None]) – dataframe-wide checks.

  • parsers (Union[Parser, list[Parser], None]) – dataframe-wide parsers.

  • index – specify the datatypes and properties of the index.

  • dtype (UnionType[Any, 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.

  • coerce (bool) – whether or not to coerce all of the columns on validation. This overrides any coerce setting at the column or index level. This has no effect on columns where dtype=None.

  • strict (Union[bool, Literal[‘filter’]]) – 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.

  • name (UnionType[str, None]) – name of the schema.

  • ordered (bool) – whether or not to validate the columns order.

  • unique (Union[str, list[str], None]) – a list of columns that should be jointly unique.

  • report_duplicates (Union[Literal[‘exclude_first’], Literal[‘exclude_last’], Literal[‘all’]]) – how to report unique errors - exclude_first: report all duplicates except first occurrence - exclude_last: report all duplicates except last occurrence - all: (default) report all duplicates

  • unique_column_names (bool) – whether or not column names must be unique.

  • add_missing_columns (bool) – add missing column names with either default value, if specified in column schema, or NaN if column is nullable.

  • title (UnionType[str, None]) – A human-readable label for the schema.

  • description (UnionType[str, None]) – An arbitrary textual description of the schema.

  • metadata (UnionType[dict, None]) – An optional key-value data.

  • drop_invalid_rows (bool) – if True, drop invalid rows on validation.

Raises:

SchemaInitError – if impossible to build schema from parameters

Examples:

>>> import pandera.pandas as pa
>>>
>>> schema = pa.DataFrameSchema({
...     "str_column": pa.Column(str),
...     "float_column": pa.Column(float),
...     "int_column": pa.Column(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(
...         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(
...         str, [
...             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

BACKEND_REGISTRY

coerce

Whether to coerce series to specified type.

dtype

Get the dtype property.

dtypes

A dict where the keys are column names and values are DataType s for the column.

properties

Get the properties of the schema for serialization purposes.

unique

List of columns that should be jointly unique.

Methods

example(size=None, n_regex_columns=1)[source]

Like DataFrameSchema.example(), but returns a GeoDataFrame when applicable.

Return type:

DataFrame

classmethod from_json(source)[source]

Load a GeoDataFrameSchema from JSON.

Return type:

Self

classmethod from_yaml(yaml_schema)[source]

Load a GeoDataFrameSchema from YAML.

Return type:

Self

strategy(*, size=None, n_regex_columns=1)[source]

Like DataFrameSchema.strategy(), but generated frames are GeoDataFrame instances when applicable.

to_json(target: None = None, dataframe_library: str | None = None, *, minimal: bool = True, **kwargs) str[source]
to_json(target: PathLike, dataframe_library: str | None = None, *, minimal: bool = True, **kwargs) None

Write schema to JSON (see pandera.io.pandas_io).

Return type:

UnionType[str, None]

to_script(fp=None, *, minimal=True)[source]

Write GeoDataFrameSchema to a Python script.

Return type:

UnionType[str, None]

to_yaml(stream=None, dataframe_library=None, *, minimal=True)[source]

Write schema to YAML (see pandera.io.pandas_io).

Return type:

UnionType[str, None]

validate(check_obj, head=None, tail=None, sample=None, random_state=None, lazy=False, inplace=False)[source]

Like DataFrameSchema.validate(), but returns a GeoDataFrame when the result is a plain pandas.DataFrame.

If validation returns a Dask object (e.g. Dask DataFrame), it is passed through unchanged so distributed workflows are not broken.

Return type:

DataFrame

__call__(dataframe, head=None, tail=None, sample=None, random_state=None, lazy=False, inplace=False)[source]

Alias for DataFrameSchema.validate() method.

Parameters:
  • dataframe (pd.DataFrame) – the dataframe to be validated.

  • head (int) – validate the first n rows. Rows overlapping with tail or sample are de-duplicated.

  • tail (int) – validate the last n rows. Rows overlapping with head or sample are de-duplicated.

  • sample (UnionType[int, None]) – validate a random sample of n rows. Rows overlapping with head or tail are de-duplicated.

  • random_state (UnionType[int, None]) – random seed for the sample argument.

  • lazy (bool) – if True, lazily evaluates dataframe against all validation checks and raises a SchemaErrors. Otherwise, raise SchemaError as soon as one occurs.

  • inplace (bool) – if True, applies coercion to the object of validation, otherwise creates a copy of the data.

Return type:

~TDataObject