powered by
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)
The d score test statistics.
An R regression model fitted using glm(). Do not use lm(), even for linear regression!
An n*d matrix with each factor as one column. There should be no missing data.
Either "linear" or "logit" or "log".
The projection matrix used in calculation may be passed in to speed up the calculation. See paper for details. Default is null.
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")
Run the code above in your browser using DataLab