neonutilities.read_table_neon¶
- neonutilities.read_table_neon(data_file, var_file)¶
Read a NEON data table with correct data types for each variable.
Parameters¶
- data_file: str
Filepath to a data table to load.
- var_file: str
Filepath to a variables file matching the data table.
Return¶
A data frame of a NEON data table, with column classes assigned by data type.
Example¶
>>> dattab = read_table_neon(data_file="path to data table file", var_file="path to variables file matching data table")
Created on Thu Feb 1 2024
@author: Zachary Nickerson