View source: R/fast_recovery.R
fast_recovery | R Documentation |
Recover a single record fast by using an argument csv file that passes arguments to different functions for recovery.
fast_recovery(
filepath_trace = "WS_25_1981_trace.csv",
col_x_trace = 1,
col_y_trace = 2,
filepath_timedots = "WS_25_1981_time_dots.csv",
col_x_timedots = 1,
col_y_timedots = 2,
filepath_args = "WS_25_1981_args.csv"
)
filepath_trace |
file path of raw trace csv file |
col_x_trace |
position of trace x values column |
col_y_trace |
posiiton of trace y values column |
filepath_timedots |
file path of raw time dots csv file |
col_x_timedots |
posiiton of timedots x values column |
col_y_timedots |
position of timedots y values column |
filepath_args |
file path of csv file containing:
|
trace data frame after full recovery
## Not run:
filepath <- system.file("extdata", "WS_25_1981", package = "recoverKBTDR")
filepath_trace <- paste(filepath, "WS_25_1981_trace.csv", sep = "/")
filepath_timedots <- paste(filepath, "WS_25_1981_time_dots.csv", sep = "/")
filepath_args <- paste(filepath, "WS_25_1981_args.csv", sep = "/")
fast_recovery(filepath_trace, col_x_trace = 1, col_y_trace = 2,
# filepath_timedots, col_x_timedots = 1, col_y_timedots =2, filepath_args)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.