readBinMat
Function to read effects saved by BGLR when ETA[[j]]$saveEffects=TRUE.
readBinMat(filename,byrow=TRUE)
filename |
(string), the name of the file to be read. |
byrow |
(logical), if TRUE the matrix is created by filling its corresponding elements by rows. |
A matrix with samples of regression coefficients.
Gustavo de los Campos.
## Not run: #Demos library(BGLR) data(wheat) y=wheat.Y[,1] ; X=scale(wheat.X) dir.create('test_saveEffects') setwd('test_saveEffects') fm=BGLR(y=y,ETA=list(list(X=X,model='BayesB',saveEffects=TRUE)),nIter=12000,thin=2,burnIn=2000) B=readBinMat('ETA_1_b.bin') ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.