data_transform | R Documentation |
Data Transformation and filtration Transformation of data using one of the four mentioned methods and filtering based on median value
data_transform(df,transformation,featurelist, medianthres)
df |
numerical dataframe with rows having series of values for a single feature |
transformation |
type of transformation method ”Log2' or 'Z-score' or 'quantile' or 'NA' (no) transformaiton |
featurelist |
listing of feature names or ids to measure correlation between |
medianthres |
(optional)features have median below this numerical value are filtered or removed |
transdf<- data_transform(df=GTEX[-1],transformation='log2', featurelist=GTEX$Description) transdf<- data_transform(df=GTEX[-1],transformation='log2', featurelist=GTEX$Description, medianthres=1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.