topD3M: Subsetting Top Significant Distribution Pairs and Output...

Description Usage Arguments Details Value Author(s) Examples

View source: R/top_d3m.R

Description

Subsetting Top Significant Distribution Pairs and Output Graphics.

Usage

1
topD3M(obj, ntop = 10, plot.it = TRUE)

Arguments

obj

D3M object resulted from d3m.

ntop

the number of top distribution pairs to be investigated. Default is 10.

plot.it

whether output the grphics based on Q-Q plot. Defarult is plot.it=TRUE.

Details

this function extract a subset of the most significant distribution pairs based on p-values. The graphical representation is based on Q-Q plots, which represents the shape difference being tested by d3m function.

Value

top.cases top significant distributions in case group.

top.control top significant distributions in control group.

pval p-values related to top significant distribution pairs.

Q-Q plots of distribution pairs.

Author(s)

Yusuke Matsui & Teppei Shimamura

Examples

1
2
3
4
5
6
library(D3M)
nrep <- 12
cases <- Map(rbeta,rep(30,nrep),rep(1,nrep),rep(5,nrep)); cases <- do.call("rbind",cases)
control <- Map(rbeta,rep(30,nrep),rep(1,nrep),rep(5,nrep)); control <- do.call("rbind",control)
obj <- d3m(cases,control,paranum = 101, q = 2, bsn = 1000)
topD3M(obj,ntop = 10,plot.it = TRUE)

D3M documentation built on May 30, 2017, 7:19 a.m.