View source: R/cell profiles function.R
cellProfileTruncate | R Documentation |
cellProfileTruncate
takes raw fluorescence intensity profiles from, eg, ImageJ, and truncates the specified number of rows from the beginning and end of each cell
cellProfileTruncate(data = NULL, adjust = 0)
data |
data frame, consisting of paired columns depicting (1) fluorescent intensity and (2) cell length. Accepts output directly from, eg, ImageJ |
adjust |
integer representing the number of data points to trim from each end of the profiles |
a data frame
cellProfiles
data_path <- system.file("extdata", "ftsZ_profiles.csv", package = "cellProfiles")
dtable <- read.table(data_path, header=FALSE, sep=",")
dtable_trimmed <- cellProfileTruncate(data=dtable, 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.