load_single | R Documentation |
Loads a single measurement.
load_single(filename, columns = c(1:2))
filename |
Character string containing the path to measurement file. |
columns |
A vector of column numbers. The first entry will be used as the x-axis values, the second entry as y-axis values.
All other columns will be ignored. Default: |
#' The input files need to be in the following format (even though column names do not matter):
t | y |
|
t.1 | y.1 |
|
... | ... |
|
t.n | y.n |
|
All columns except the first two are removed.
A tibble with two columns named "t" and "y".
# Store filename filename <- forceR_example(type="raw") df.1 <- load_single(filename, columns = c(1:2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.