Description Usage Arguments Details Value References Examples
Identifies outlier in genomics data by combining various LASSO diagnostic followed by meta-analysis using sum of logs, also known as Fisher’s method.
1 | OGS.sumlog(X,Y)
|
X |
X is a design matrix of marker genotype of size n×p where n are no of Individuals under study (i.e. genotype, lines) and p are no of markers |
Y |
Y is a vector of response/individuals of size n×1 |
This function first combines various LAASO diagnostic proposed for high dimensional regression i.e. df-model, df-lambda, df-regpath and df-cvpath and produce a single p-value for each individuals/observation using sum of logs method. Using a suitable p-value cut-off (i.e. .01 or .05), outlier can be identified.
$p-values lists p-value for each observation/individuals/lines
Rajaratnam, B., Roberts, S., Sparks, D. & Yu, H. Influence Diagnostics for High-Dimensional Lasso Regression. Journal of Computational and Graphical Statistics, 1-14 (2019).
Becker BJ (1994). “Combining significance levels.” In Cooper H, Hedges LV (eds.), A handbook of research synthesis, 215–230. Russell Sage, New York.
1 2 3 4 5 | library(STGS)
data(wheat_data)
X<-wheat_data[,1:100]
Y<-as.data.frame(wheat_data[,101])
OGS.sumlog(X,Y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.