pair_scatter | R Documentation |
Pair Scatter Scatter between two chosen features.
pair_scatter(df,featurelist, feature1, feature2, corrmeth, col)
df |
numerical dataframe with rows having series of values for a single feature |
featurelist |
list of features in the sequence as it occurs in the Dataframe |
feature1, feature2 |
Features to be compared |
corrmeth |
Correlation method used. 'pearson' or 'spearman' (default='pearson') |
col |
Color for scatter plot, default="#1f78b4" |
pscatter <- pair_scatter(df=TCGA40,featurelist=rownames(TCGA40), feature1="RNASEH2A",feature2="PCNA", corrmeth='pearson', col= "#1f78b4") pscatter <- pair_scatter(df=logTCGA40,featurelist=rownames(logTCGA40), feature1="RNASEH2A", feature2="PCNA", corrmeth='pearson', col= "#b45b1f")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.