View source: R/score_stats_only.R
score_stats_only | R Documentation |
Starting with individual-level data on p factors, generate score test statistics for each factor for input into GBJ/GHC/HC/BJ/minP. DOES NOT get the correlations (assumed known).
score_stats_only(null_model, factor_matrix, link_function, P_mat = NULL)
null_model |
An R regression model fitted using glm(). Do not use lm(), even for linear regression! |
factor_matrix |
An n*d matrix with each factor as one column. There should be no missing data. |
link_function |
Either "linear" or "logit" or "log". |
P_mat |
The projection matrix used in calculation may be passed in to speed up the calculation. See paper for details. Default is null. |
The d score test statistics.
Y <- rbinom(n=100, size=1, prob=0.5)
null_mod <- glm(Y~1, family=binomial(link="logit"))
factor_matrix <- matrix(data=rnorm(n=100*5), nrow=100)
score_stats_only(null_mod, factor_matrix, "logit")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.