Description Usage Arguments Value Author(s) Examples
View source: R/BI_FastEnrichPlot.R
Fast way to draw enrich plot after clusterProfilter enrichfunction
1 2 3 4 | FastEnrichPlot(object, pvalueCutoff = NULL, qvalueCutoff = NULL,
id.col = "Description", select = NULL,
x.title = "Biological Process terms", y.title = "-log10(FDR)",
size = 15, short.cutoff = 46, topshow = 10)
|
object |
result from |
pvalueCutoff |
p value cutoff |
qvalueCutoff |
q value cutoff |
id.col |
ID you want to show in final plot |
select |
if |
x.title |
the title of x axis |
y.title |
the title of y axis |
size |
the size of whole plot |
short.cutoff |
if the number of character of terms is larger than |
topshow |
the number of top iterms ordered by FDR you want to show.It works only |
LuckyList Object
Weibin Huang<654751191@qq.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## This is a simulative process and available only with CORRECT VARIABLES
load("E:/iProjects/LM_WGCNA/data/LM_WGCNA_02A/rda/goList.rda")
object <- goList$GOEnrichment$BP
res_EP <- FastEnrichPlot(object = object,
pvalueCutoff = NULL,
qvalueCutoff = NULL,
id.col = "Description",
select = NULL,
x.title = "Biological Process terms",
y.title = "-log10(FDR)",
size = 15,
short.cutoff = 46,
topshow = 10)
win.graph(12,9);res_EP$Plot
pvalueCutoff = 0.05
qvalueCutoff = 0.05
select = res2$ID[1:10]
id.col = "Description"
x.title = "Biological Process terms"
y.title = "-log10(FDR)"
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.