readBinMat | R Documentation |
Function to read effects saved by BGLR when ETA[[j]]$saveEffects=TRUE.
readBinMat(filename,byrow=TRUE,storageMode="double")
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. |
storageMode |
(character), the storage mode used to save effects via ETA[[j]]$storageMode: 'double' (default) or 'single'. |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.