View source: R/verify_and_transform_data.R
verify_and_transform_data | R Documentation |
verify_and_transform_data
is a helper function used in multiple core functions to check input, clear low variance and apply log or variance stabilizing transformation.
verify_and_transform_data( data, clear_low_variance = FALSE, transformation_type = "", blind = TRUE )
data |
The original data that was plugged into the initial call of |
clear_low_variance |
A boolean variable that determines whether rows with var < 1 are removed or not. This is done before any type of transformation is performed. |
transformation_type |
A string variable that determines whether or not a log or VST transformation should be done on the original data. If this argument is used, it should be "vst" or "log" only. If no transformation is to be performed, the default value or any string other than "vst" or "log" can be used. |
blind |
If a VST is to be done, this boolean value determines whether it is blind or not. |
Returns the transformed data.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.