Description Usage Arguments Details Value Author(s) Examples
This function explores the reproducibility of analysis with annotation altering
1 | exploreRep(df_d, lbl_vect, f)
|
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_vect |
a vector of character strings specifing the labels for which the analysis should be run |
f |
A numeric value of f for which the analysis should be run |
exploreRep
function to explore the reproducibility of the analysis
with altering of annotation. It runs ANOVA test for values to compare
(e.g. number of differentially expressed genes) corresponding to different
Annotation labels (i.e. analysis' run for different annotation types)
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
Thired column gives the values to compare (here number of differentially
expressed genes).
exploreRep
function subsets the dataset to consider only valyes for one
f and runs ANOVA test for groups corresponding to annotations 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 types labeled 'New, Gene' and 'New, Exon' and
#f value 0.9
exploreRep(df_sole, lbl_vect = c('New, Gene', 'Old, Gene'), f = 0.9)
#run ANOVA for annotation type labeled 'Old' and 'New' and f value 0.5
exploreRep(df_sole, lbl_vect = c('New, Gene', 'Old, Gene'), f = 0.5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.