Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error in eigen(LT$K) : infinite or missing values in 'x' #48

Open
congzhouczcz opened this issue May 7, 2020 · 0 comments
Open

Error in eigen(LT$K) : infinite or missing values in 'x' #48

congzhouczcz opened this issue May 7, 2020 · 0 comments

Comments

@congzhouczcz
Copy link

Dear Dr. Gustavo,
I fit a 'GBLUP' model using BGLR ,this is my code:

nlines=152
d<-read_ped(ped_file='/home/hgc-z3/zc/gs/1520cAset7.ped')
X<-data.frame(matrix(unlist(d[1]), nrow=nlines, byrow=FALSE),stringsAsFactors=FALSE)
Y<-read.table('/home/hgc-z3/zc/gs/cA.trait.txt',header=T,sep="\t")
y<-Y[,2]
nTST<-30
n<-nrow(X);p<-ncol(X);nRep<-100;nIter<-100000;burnIn<-10000
X<-scale(X,center=TRUE,scale=TRUE)
G<-tcrossprod(X)/p
ETA<-list(list(K=G,model='RKHS'))
COR<-matrix(nrow=nRep,ncol=1,NA)
for(i in 1:nRep){
tst<-sample(1:n,size=nTST,replace=FALSE)
yNA<-y;yNA[tst]<-NA
fm<-BGLR(y=yNA,ETA=ETA,nIter=nIter,burnIn=burnIn)
COR[i,1]<-cor(y[tst],fm$yHat[tst]);rm(fm)
}
write.table(COR,file="t.csv",quote=FALSE,sep=",")

However, it give error : Error in eigen(LT$K) : infinite or missing values in 'x' ,I donot where is wrong in my file and they seem no missing value.
where is the wrong?
Thanks a lot !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant