Description Usage Arguments Details Examples
View source: R/normalizeRawIntDen.R
This function will take the data obtained from ImageJ time-series and normalize them to each ROI. It cleans up the data as well by removing the time column and rawIntDen column obtained from the ImageJ csv. It also renames the columns from IntDenx to Cell x.
1 | normalizeRawIntDen(rawIntDen)
|
rawIntDen |
Dataframe of raw integrated density data from Imagej |
It sets the maximum intensity in the time series to 1, and the minimum to 0. This allows the ROI's analyzed to be compared to one another.
The output of the function should be stored as a variable. There are two outputs for this function: One is a standard wide-format that is easy to look at manually. The other is a 'long' format where the intensity data has been gathered under a key for the cell/ROI being analyzed.
Normalization method: (x-min(x)) / (max(x)-min(x)
1 | normCellData <- normalizeRawIntDen(rawIntData)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.