tlc.core.objects.tables.from_python_object.table_from_pandas#

A table populated from a Pandas Dataframe object

Module Contents#

Classes#

Class

Description

TableFromPandas

A table populated from a Pandas Dataframe object

API#

class tlc.core.objects.tables.from_python_object.table_from_pandas.TableFromPandas(url: tlc.core.url.Url | None = None, created: str | None = None, description: str | None = None, row_cache_url: tlc.core.url.Url | None = None, row_cache_populated: bool | None = None, override_table_rows_schema: tlc.core.schema.Schema | None = None, init_parameters: Any | None = None, dataframe: pandas.DataFrame | None = None)#

Bases: tlc.core.objects.tables.in_memory_rows_table._InMemoryRowsTable

A table populated from a Pandas Dataframe object

Parameters:
  • url – The URL of the table.

  • created – The creation time of the table.

  • description – The description of the table.

  • row_cache_url – The URL of the row cache.

  • row_cache_populated – Whether the row cache is populated.

  • override_table_rows_schema – The schema to override the table rows schema.

  • init_parameters – The initial parameters of the table.