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 with reference class field ‘Ut’, should be from class “dgCMatrix” #1

Closed
marisalver opened this issue Sep 14, 2017 · 7 comments

Comments

@marisalver
Copy link

Thank you for providing a method for analysis! I am using lme4qtl for a linear mixed model analysis, but I keep getting an error:

Error: invalid assignment for reference class field ‘Ut’, should be from class “dgCMatrix” or a subclass (was class “dgeMatrix”)

Do you have any suggestions where that might stem from?

This is how I got the kinship matrix:

library("Matrix")
library("lme4")
maatriks2=read.csv("table.txt", sep=" ", dec=".", header=TRUE,stringsAsFactors=FALSE)
class(maatriks2[,1])
class(maatriks2)
dim(maatriks2)
rownames(maatriks2) = maatriks2[,1]
maatriks2[,1]=NULL

maatriks2<-as.matrix(maatriks2)
maatriks2=as(maatriks2,"dgCMatrix”)

mudel2 <- relmatLmer(CTG_LDL_statin ~ Age+ Sugu + (1|Vcode1), FH2, relmat = list(Vcode1 = maatriks2))

@variani
Copy link
Owner

variani commented Sep 14, 2017

Based on the data your shared with me by emai, I see that the matrix is not symmetric.

library(Matrix)

isSymmetric(maatriks2, tol = 0)
#[1] FALSE

isSymmetric(maatriks2, tol = 0.01)
#[1] FALSE

isSymmetric(maatriks2, tol = 0.02)
#[1] TRUE

Hence, the error comes from either EVD or Cholesky decomposition from the Matrix R package.

I would suggest to "symmetrize" your matrix (I am not sure what is the best way to do it) and pass clean input to relmatLmer.

variani added a commit that referenced this issue Sep 15, 2017
@marisalver
Copy link
Author

marisalver commented Sep 18, 2017 via email

@marisalver
Copy link
Author

marisalver commented Sep 18, 2017 via email

@marisalver
Copy link
Author

marisalver commented Sep 18, 2017 via email

@variani
Copy link
Owner

variani commented Sep 18, 2017

Hi Maris,

It is good to know your solution based on nearPD! Thanks for sharing.

It might be a general suggestion to do some checks on your relationship matrix (is symmetric, EVD ok?) before calling relmatLmer.

In future versions, I am thinking to add option passing the relationship matrix in two formats, matrix and its EVD. So, the user has more controls.

Best,
Andrey

@variani
Copy link
Owner

variani commented May 30, 2018

Take care of those relationship matrices needing nearPD:

  • write a test on synthetic data
  • output informative warning
  • fix the issue inside the package (so there is no need to apply nearPD outside)

@variani variani reopened this May 30, 2018
@variani variani changed the title error with reference class field 'Ut' error with reference class field ‘Ut’, should be from class “dgCMatrix” Jun 12, 2018
variani added a commit that referenced this issue Dec 7, 2018
@variani
Copy link
Owner

variani commented Dec 7, 2018

The class conversion error (the title of this thread) seems to be fixed with the last commit and bumped version 0.1.11.

Though, it doesn't rule out related issues when the custom covariance is poorly defined that leads to convergence failure, etc

@variani variani closed this as completed Aug 28, 2019
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

2 participants