Description Usage Arguments Details Author(s) Examples
View source: R/GetExampleData.R
Get the example data.
1 2 | GetExampleData(exampleData)
|
exampleData |
A character string, must be one of "dataset", "class.labels" , "miRList","p_value"and "p2miR". |
The function GetExampleData(exampleData="dataset") obtains miRNA expression dataset from the environment variable envData
.
The function GetExampleData(exampleData="class.labels") obtains class labels from the environment variable envData
.
The function GetExampleData(exampleData="miRList") obtains the drawing parameters of a miRNA List from the environment variable envData
.
The function GetExampleData(exampleData="p_value") obtains the weighting matrix from the environment variable envData
.
The function GetExampleData(exampleData="p2miR") obtains the correlation profile between kegg pathways and each human miRNA from the environment variable envData
.
Junwei Hanhanjunwei1981@163.com,Siyao Liu liusiyao29@163.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## Not run:
#obtain the gene expression dataset.
dataset<-GetExampleData(exampleData="dataset")
#obtain the class labels.
class.labels<-GetExampleData(exampleData="class.labels")
#obtain the drawing parameters of a miRNA List
miRList<-GetExampleData(exampleData="miRList")
#obtain the weighting matrix
p_value<-GetExampleData(exampleData="p_value")
#obtain the correlation profile
p2miR<-GetExampleData(exampleData="p2miR")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.