tidy_raw_trace | R Documentation |
This function takes the raw trace 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_trace(filepath_trace, col_x = 1, col_y = 2)
filepath_trace |
the path to the csv file containing the raw trace data from ImageJ |
col_x |
column of the x values, default is set to first column. |
col_y |
column 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_trace <- paste(filepath, "WS_25_1981_trace.csv", sep = "/")
tidy_raw_trace(filepath_trace, 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.