tidy_raw_timedots | R Documentation |
This function takes the raw time dots csv file from ImageJ and applies a series of corrections to it such that it can be used in this package. This involves correcting the default y-axis values, ordering, filtering, and adding proper names to the data frame.
tidy_raw_timedots(filepath_timedots, col_x = 1, col_y = 2)
filepath_timedots |
the path to the csv file containing the raw time dots data from ImageJ |
col_x |
column number of the x values, default is set to first column. |
col_y |
column number of the y values, default is set to second column. |
One trace data frame after correcting ImageJ's default origin placement
## Not run:
filepath <- system.file("extdata", "WS_25_1981", package = "recoverKBTDR")
filepath_timedots <- paste(filepath, "WS_25_1981_time_dots.csv", sep = "/")
tidy_raw_timedots(filepath_timedots, col_x = 1, col_y = 2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.