xorbits.pandas.read_spss#

xorbits.pandas.read_spss(path: str | Path, usecols: Sequence[str] | None = None, convert_categoricals: bool = True) DataFrame[source]#

Load an SPSS file from the file path, returning a DataFrame.

New in version 0.25.0.

Parameters
  • path (str or Path) – File path.

  • usecols (list-like, optional) – Return a subset of the columns. If None, return all columns.

  • convert_categoricals (bool, default is True) – Convert categorical columns into pd.Categorical.

Return type

DataFrame

This docstring was copied from pandas.