Description Usage Arguments Details Value Author(s) Examples
This function explores the robustness of analysis with sequencing depth altering
1 | exploreRob(df_d, lbl, f_vect)
|
df_d |
a dataframe containing the dataset to explore with 3 columns : label, f ratio, value to compare (e.g. number of differentially expressed genes) |
lbl |
a character string specifing the label for which the analysis should be run |
f_vect |
A numeric vector containing the values of f for which the analysis should be run |
exploreRob
function to explore the robustness of the analysis
with altering of sequencing depth. It runs ANOVA test for values to
compare (e.g. number of differentially expressed genes) corresponding
to different f ratio values (i.e. values of sequencing depth)
This function takes as input a dataframe containing the dataset to explore.
Here is the example of the dataframe
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
exploreRob
function subsets the dataset to consider only valyes for
one type of annotation and runs ANOVA test for groups corresponding to f
values of interest.
An output of aov function
Alexey Stupnikov and Shailesh Tripathi
1 2 3 4 5 6 7 8 | #library(samExploreR)
data("df_sole")
#run ANOVA for annotation type labeled 'New, Gene' and f values 0.9, 0.95
exploreRob(df_sole, lbl = 'New, Gene', f_vect = c(0.9, 0.95))
#run ANOVA for annotation type labeled 'Old' and f values 0.5, 0.95
exploreRob(df_sole, lbl = 'Old, Gene', f_vect = c(0.5, 0.95))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.