# --------------------------------------------- #
# Arabidopsis example #
# --------------------------------------------- #
require(bigRR)
data(Arabidopsis)
X <- matrix(1, length(y), 1)
## Not run:
# # fitting SNP-BLUP, i.e. a ridge regression on all the markers across the genome
# #
# SNP.BLUP.result <- bigRR(y = y, X = X, Z = scale(Z),
# family = binomial(link = 'logit'))
#
# # fitting HEM, i.e. a generalized ridge regression with marker-specific shrinkage
# #
# HEM.result <- bigRR_update(SNP.BLUP.result, scale(Z),
# family = binomial(link = 'logit'))
#
# # plot and compare the estimated effects from both methods
# #
# split.screen(c(1, 2))
# split.screen(c(2, 1), screen = 1)
# screen(3); plot(abs(SNP.BLUP.result$u), cex = .6, col = 'slateblue')
# screen(4); plot(abs(HEM.result$u), cex = .6, col = 'olivedrab')
# screen(2); plot(abs(SNP.BLUP.result$u), abs(HEM.result$u), cex = .6, pch = 19,
# col = 'darkmagenta')
#
# # create a random new genotypes for 10 individuals with the same number of markers
# # and predict the outcome using the fitted HEM
# #
# Z.new <- matrix(sample(c(-1, 1), 10*ncol(Z), TRUE), 10)
# y.predict <- as.numeric(HEM.result$beta + Z.new %*% HEM.result$u)
# #
# # NOTE: The above prediction may not be good due to the scaling in the HEM
# # fitting above, and alternatively, one can either remove the scaling
# # above or scale Z.new by row-binding it with the original Z matrix.
# ## End(Not run)
Run the code above in your browser using DataLab