Tables
Table ¶
Table(dataframe, name=None)
Table wraps a dataframe into a table format, to enable the logging of custom metadata within Vectice.
This class formats metadata into a tabular structure, enabling the ability to log tables for documentation purposes. Once logged, this structured metadata is accessible within the Vectice app.
IMPORTANT INFORMATION
Vectice stores the metadata in its original form, ensuring it remains unaltered without any processing or transformation.
A Vectice Table is a wrapped pandas dataframe in a table format, which can then be logged to a Vectice iteration. (Maximum of 100 rows and 20 columns).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dataframe
|
DataFrame
|
The pandas dataframe to be wrapped as table. |
required |
name
|
str | None
|
The name of the table for future reference. |
None
|