tables¤
Read tabular data from a file.
extension_delimiter_map
module-attribute
¤
extension_delimiter_map = {'.csv': ','}
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_table(file, **kwargs)
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
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 326 327 328 329 330 331 332 333 334 |
|
read_table_excel ¤
read_table_excel(
file,
*,
cells=None,
sheet=None,
as_datetime=True,
dtype=None,
**kwargs,
)
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
|
The data type(s) to use for the table. |
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
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 |
|
read_table_gsheets ¤
read_table_gsheets(
file,
cells=None,
sheet=None,
*,
as_datetime=True,
dtype=None,
**kwargs,
)
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
|
The data type(s) to use for the table. |
None
|
kwargs
|
Any
|
All additional keyword arguments are passed to GSheetsReader. |
{}
|
Returns:
Type | Description |
---|---|
Dataset
|
Source code in src/msl/io/tables.py
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 203 204 205 206 207 208 209 210 211 212 213 214 215 |
|
read_table_ods ¤
read_table_ods(
file,
*,
cells=None,
sheet=None,
as_datetime=True,
merged=False,
dtype=None,
**kwargs,
)
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
|
|
merged
|
bool
|
Applies to cells that are merged with other cells. If |
False
|
dtype
|
DTypeLike
|
The data type(s) to use for the table. |
None
|
kwargs
|
Any
|
All keyword arguments are passed to ODSReader. |
{}
|
Returns:
Type | Description |
---|---|
Dataset
|
Source code in src/msl/io/tables.py
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 264 265 266 267 268 |
|
read_table_text ¤
read_table_text(file, **kwargs)
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
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 |
|