View source: R/functioncollection_import.R
ReadClassData | R Documentation |
This is a convenience wrapper function to import a ClassData file as data frame into R. ClassData files contain definitions of SLC (Soil and Land use Crop) classes in five to 15 predefined columns, see ClassData.txt documentation.
ReadClassData(
filename = "ClassData.txt",
encoding = c("unknown", "UTF-8", "Latin-1"),
verbose = TRUE
)
filename |
Path to and file name of the ClassData file to import. Windows users: Note that Paths are separated by '/', not '\'. |
encoding |
Character string, encoding of non-ascii characters in imported text file. Particularly relevant when
importing files created under Windows (default encoding "Latin-1") in Linux (default encoding "UTF-8") and vice versa. See
also argument description in |
verbose |
Print information on number of data columns in imported file. |
ReadClassData
is a convenience wrapper function of fread
, with treatment of leading
comment rows. Column names are created on import, optional comment rows are imported as strings in attribute
'comment'.
Optional inline comments (additional non-numeric columns) are automatically identified and imported along with data columns.
ReadClassData
returns a data frame with added attribute 'comment'.
ReadGeoClass
te <- ReadClassData(filename = system.file("demo_model", "ClassData.txt", package = "HYPEtools"))
te
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.