View source: R/read_spectramax_data.R
read_spectramax_data | R Documentation |
This function receive one output file from spectraMax microplate reader and generate a tibble dataframe.
read_spectramax_data(file)
file |
The path to a proper .txt file formatted by the spectraMax machine. |
Returns a tibble data frame with four columns. The first column is "Wells" this contained the names for each well (A01, A02..). The second column represent "Time" at which the measurements were done, the format is in hh:mm:ss. The third column is "Temperature", this is the temperature at which the experiment was performed. The fourth column contained the measured values.
file
formatTo simplify the number of tasks that the user have to apply before load the
data in R, read_spectramax_data()
receive as a .txt the file that the
spectraMax reader return after the measurements. In this case the problem
related to different file formats, like .csv, .xlsx and versions is simplified
by using only .txt files.
file_path <- system.file("extdata", "test_spectramax_data_1.txt", package = "mpxtractor") # Data is store as a tibble data <- read_spectramax_data( file = file_path ) # Now data is tidy head(data) # Main function
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.