table
Classes¶
KiaraTable
¶
Bases: KiaraModel
A wrapper class to manage tabular data in a memory efficient way.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
Attributes¶
data_path: Union[None, str] = Field(description='The path to the (feather) file backing this array.', default=None)
class-attribute
instance-attribute
¶
The path where the table object is store (for internal or read-only use).
arrow_table: pa.Table
property
¶
Return the data as an Apache Arrow Table instance.
column_names: Iterable[str]
property
¶
Retrieve the names of all the columns of this table.
column_metadata: Mapping[str, Mapping[str, KiaraModel]]
property
¶
num_rows: int
property
¶
Return the number of rows in this table.
Functions¶
create_table(data: Any) -> KiaraTable
classmethod
¶
Create a KiaraTable
instance from an Apache Arrow Table, or dict of lists.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
|
set_column_metadata(column_name: str, metadata_key: str, metadata: KiaraModel, overwrite_existing: bool = True)
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
get_column_metadata(column_name: str) -> Mapping[str, KiaraModel]
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
123 124 125 126 127 128 129 130 |
|
get_column_metadata_for_key(column_name: str, metadata_key: str) -> KiaraModel
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
to_pydict()
¶
Convert and return the table data as a dictionary of lists.
This will load all data into memory, so you might or might not want to do that.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
152 153 154 155 156 157 |
|
to_pylist()
¶
Convert and return the table data as a list of rows/dictionaries.
This will load all data into memory, so you might or might not want to do that.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
159 160 161 162 163 164 165 |
|
to_polars_dataframe() -> pl.DataFrame
¶
Return the data as a Polars dataframe.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
167 168 169 170 171 172 |
|
to_pandas_dataframe(include_columns: Union[None, str, Iterable[str]] = None, exclude_columns: Union[None, str, Iterable[str]] = None) -> pd.DataFrame
¶
Convert and return the table data to a Pandas dataframe.
This will load all data into memory, so you might or might not want to do that.
Column names in the 'exclude_columns' argument take precedence over those in the 'include_columns' argument.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
KiaraTableMetadata
¶
Bases: ValueMetadata
File stats.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
|
Attributes¶
table: TableMetadata = Field(description='The table schema.')
class-attribute
instance-attribute
¶
Functions¶
retrieve_supported_data_types() -> Iterable[str]
classmethod
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
210 211 212 |
|
create_value_metadata(value: Value) -> KiaraTableMetadata
classmethod
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/models/table.py
214 215 216 217 218 219 220 221 |
|