sda.dashboard.components.tables#
Table Components.
Components for displaying data in tabular format.
Attributes#
Classes#
dict() -> new empty dictionary |
Functions#
|
Create table layout for displaying all data points. |
|
Create a Dash DataTable from a pandas DataFrame. |
|
Get table information summary. |
Module Contents#
- class sda.dashboard.components.tables.DropdownOption#
Bases:
TypedDictdict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s
(key, value) pairs
- dict(iterable) -> new dictionary initialized as if via:
d = {} for k, v in iterable:
d[k] = v
- dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list. For example: dict(one=1, two=2)
- sda.dashboard.components.tables.Options#
- sda.dashboard.components.tables.create_table_layout(test_name)#
Create table layout for displaying all data points.
- Parameters:
test_name (
str) – Name of the test to display- Returns:
Complete table layout
- Return type:
html.Div