read.4D.Rd
This function is only useful for the MMB department of the UMCG. Use this function to import data by just defining the file
parameter. It will automatically transform birth dates and calculate patients age, translate the column names to English, transform the MO codes with as.mo
and transform all antimicrobial columns with as.rsi
.
read.4D(file, info = interactive(), header = TRUE, row.names = NULL, sep = "\t", quote = "\"'", dec = ",", na.strings = c("NA", "", "."), skip = 2, check.names = TRUE, strip.white = TRUE, fill = TRUE, blank.lines.skip = TRUE, stringsAsFactors = FALSE, fileEncoding = "UTF-8", encoding = "UTF-8")
file | the name of the file which the data are to be read from.
Each row of the table appears as one line of the file. If it does
not contain an absolute path, the file name is
relative to the current working directory,
Alternatively,
|
---|---|
info | a logical to indicate whether info about the import should be printed, defaults to |
header | a logical value indicating whether the file contains the
names of the variables as its first line. If missing, the value is
determined from the file format: |
row.names | a vector of row names. This can be a vector giving the actual row names, or a single number giving the column of the table which contains the row names, or character string giving the name of the table column containing the row names. If there is a header and the first row contains one fewer field than
the number of columns, the first column in the input is used for the
row names. Otherwise if Using |
sep | the field separator character. Values on each line of the
file are separated by this character. If |
quote | the set of quoting characters. To disable quoting
altogether, use |
dec | the character used in the file for decimal points. |
na.strings | a character vector of strings which are to be
interpreted as |
skip | integer: the number of lines of the data file to skip before beginning to read data. |
check.names | logical. If |
strip.white | logical. Used only when |
fill | logical. If |
blank.lines.skip | logical: if |
stringsAsFactors | logical: should character vectors be converted
to factors? Note that this is overridden by |
fileEncoding | character string: if non-empty declares the
encoding used on a file (not a connection) so the character data can
be re-encoded. See the ‘Encoding’ section of the help for
|
encoding | encoding to be assumed for input strings. It is
used to mark character strings as known to be in
Latin-1 or UTF-8 (see |
Column names will be transformed, but the original column names are set as a "label" attribute and can be seen in e.g. RStudio Viewer.
On our website https://msberends.gitlab.io/AMR you can find a tutorial about how to conduct AMR analysis, the complete documentation of all functions (which reads a lot easier than here in R) and an example analysis using WHONET data.