This is a convenience wrapper function to import an Xobs file into R.
ReadXobs(
filename = "Xobs.txt",
dt.format = NULL,
variable = NULL,
nrows = -1L,
verbose = if (nrows %in% 0:2) FALSE else TRUE
)
If datetime import to POSIXct worked, ReadXobs
returns a HypeXobs
object, a data frame with four
additional attributes variable
, subid
, comment
, and timestep
: variable
and subid
each contain a vector with column-wise HYPE IDs (first column with date/time information omitted).
comment
contains the content of the Xobs file comment row as single string. timestep
contains a keyword string.
Column names of the returned data frame are composed of variable names and SUBIDs, separated by an underscore,
i.e. [variable]_[subid]
. If datetime conversion failed on import, the returned object is a data frame
(i.e. no class HypeXobs
).
Path to and file name of the Xobs file to import. Windows users: Note that Paths are separated by '/', not '\'.
Date-time format
string as in strptime
.
Character vector, HYPE variable ID(s) to select for import. Not case-sensitive. If NULL
(default), all
variables are imported. See Xobs.txt documentation
for a list of variable IDs.
Integer, number of rows to import. A value of -1
indicates all rows, a positive integer gives
the number of rows to import.
Logical, throw warning if class HypeXobs
's attribute timestep
cannot be computed.
ReadXobs
is a convenience wrapper function of fread
from package
data.table::data.table,
with conversion of date-time strings to POSIX time representations. Variable names, SUBIDs, comment, and timestep are returned as
attributes (see attr
on how to access these).
Duplicated variable-SUBID combinations are not allowed in HYPE Xobs files, and the function will throw a warning if any are found.
te <- ReadXobs(filename = system.file("demo_model", "Xobs.txt", package = "HYPEtools"))
te
Run the code above in your browser using DataLab