tables¤
Read tabular data from a file.
extension_delimiter_map
module-attribute
¤
The delimiter to use to separate columns in a table based on the file extension.
If the delimiter keyword is not specified when calling the read_table function
then this extension-delimiter map is used to determine the value of the delimiter to use to separate the columns
in a text-based file format. If the file extension is not in the map, then columns are split by any whitespace.
See the Overview for an example.
read_table
¤
Read data in a table format from a file.
A table has the following properties:
- The first row is a header
- All rows have the same number of columns
- All data values in a column have the same data type
See the Overview for examples.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
PathLike | ReadLike
|
The file to read. If |
required |
kwargs
|
Any
|
If the file is an Excel spreadsheet then the keyword arguments are passed to read_table_excel. If a Google Sheets spreadsheet then the keyword arguments are passed to read_table_gsheets. If an OpenDocument Spreadsheet then the keyword arguments are passed to read_table_ods. Otherwise, all keyword arguments are passed to read_table_text. |
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
Source code in src/msl/io/tables.py
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 | |
read_table_excel
¤
read_table_excel(
file: PathLike | ReadLike,
*,
cells: str | None = None,
sheet: str | None = None,
as_datetime: bool = True,
dtype: DTypeLike | None = None,
invalid_date: str | date | datetime | None = None,
skip_rows: Iterable[int] | None = None,
**kwargs: Any,
) -> Dataset
Read a data table from an Excel spreadsheet.
The generic way to read any table is with the read_table function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
PathLike | ReadLike
|
The file to read. |
required |
cells
|
str | None
|
The cells to read. For example, |
None
|
sheet
|
str | None
|
The name of the sheet to read the data from. If there is only one sheet in the workbook then you do not need to specify the name of the sheet. |
None
|
as_datetime
|
bool
|
True
|
|
dtype
|
DTypeLike | None
|
The data type(s) to use for the table. |
None
|
invalid_date
|
str | date | datetime | None
|
If |
None
|
skip_rows
|
Iterable[int] | None
|
Row numbers to skip. The row numbers are as shown when the spreadsheet is
viewed in Excel and are not based on the row number in the data that would be
returned. For example, if |
None
|
kwargs
|
Any
|
All additional keyword arguments are passed to xlrd.open_workbook.
Can use an |
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
Source code in src/msl/io/tables.py
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 | |
read_table_gsheets
¤
read_table_gsheets(
file: PathLike | ReadLike,
cells: str | None = None,
sheet: str | None = None,
*,
as_datetime: bool = True,
dtype: DTypeLike | None = None,
invalid_date: datetime | None = None,
skip_rows: Iterable[int] | None = None,
**kwargs: Any,
) -> Dataset
Read a data table from a Google Sheets spreadsheet.
Note
You must have already performed the instructions specified in GDrive and in GSheets to be able to use this function.
The generic way to read any table is with the read_table function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
PathLike | ReadLike
|
The file to read. Can be the ID of a Google Sheets spreadsheet. |
required |
cells
|
str | None
|
The cells to read. For example, |
None
|
sheet
|
str | None
|
The name of the sheet to read the data from. If there is only one sheet in the spreadsheet then you do not need to specify the name of the sheet. |
None
|
as_datetime
|
bool
|
True
|
|
dtype
|
DTypeLike | None
|
The data type(s) to use for the table. |
None
|
invalid_date
|
datetime | None
|
If |
None
|
skip_rows
|
Iterable[int] | None
|
Row numbers to skip. The row numbers are as shown when the spreadsheet is
viewed in Google Sheets and are not based on the row number in the data that would
be returned. For example, if |
None
|
kwargs
|
Any
|
All additional keyword arguments are passed to GSheetsReader. |
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
Source code in src/msl/io/tables.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | |
read_table_ods
¤
read_table_ods(
file: PathLike | ReadLike,
*,
cells: str | None = None,
sheet: str | None = None,
as_datetime: bool = True,
dtype: DTypeLike | None = None,
invalid_date: str | date | datetime | None = None,
merged: bool = False,
skip_rows: Iterable[int] | None = None,
**kwargs: Any,
) -> Dataset
Read a data table from an OpenDocument Spreadsheet.
The generic way to read any table is with the read_table function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
PathLike | ReadLike
|
The file to read. |
required |
cells
|
str | None
|
The cells to read. For example, |
None
|
sheet
|
str | None
|
The name of the sheet to read the data from. If there is only one sheet in the OpenDocument then you do not need to specify the name of the sheet. |
None
|
as_datetime
|
bool
|
True
|
|
dtype
|
DTypeLike | None
|
The data type(s) to use for the table. |
None
|
invalid_date
|
str | date | datetime | None
|
If |
None
|
merged
|
bool
|
Applies to cells that are merged with other cells. If |
False
|
skip_rows
|
Iterable[int] | None
|
Row numbers to skip. The row numbers are as shown when the spreadsheet is
viewed in the OpenDocument application and are not based on the row number in the
data that would be returned. For example, if |
None
|
kwargs
|
Any
|
All keyword arguments are passed to ODSReader. |
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
Source code in src/msl/io/tables.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | |
read_table_text
¤
Read a data table from a text-based file.
The generic way to read any table is with the read_table function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
PathLike | ReadLike
|
The file to read. |
required |
kwargs
|
Any
|
All keyword arguments are passed to numpy loadtxt. If the
|
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
Source code in src/msl/io/tables.py
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 | |