tabsdata.tableframe
- class SysCol(
- *values,
Bases:
StrEnum
- empty() TableFrame
Creates an empty (no column - no row) TableFrame.
- from_dict( ) TableFrame
Creates tableframe from a dictionary, or None. None produces as an empty (no column - no row) tableframe.
- Parameters:
data – Input data.
- from_pandas(
- data: pd.DataFrame | None = None,
Creates tableframe from a pandas dataframe, or None. None produces as an empty (no column - no row) tableframe.
- Parameters:
data – Input data.
- from_polars(
- data: LazyFrame | DataFrame | None = None,
Creates tableframe from a polars dataframe or lazyframe, or None. None produces as an empty (no column - no row) tableframe.
- Parameters:
data – Input data.
- to_dict(
- data: TableFrame,
Creates dictionary from a tableframe, or None. None produces and empty (no key) dictionary.
- Parameters:
data – Input data.
- to_pandas(
- data: td_frame.TableFrame,
Creates pandas dataframe from a tableframe, or None. None produces and empty (no column - no row) pandas dataframe.
- Parameters:
data – Input data.
- to_polars_df(
- data: TableFrame,
Creates polars dataframe from a tableframe, or None. None produces and empty (no column - no row) polars dataframe.
- Parameters:
data – Input data.
- to_polars_lf(
- data: TableFrame,
Creates polars lazyframe from a tableframe, or None. None produces and empty (no column - no row) polars lazyframe.
- Parameters:
data – Input data.