-
Notifications
You must be signed in to change notification settings - Fork 10
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
Comments
Based on the data your shared with me by emai, I see that the matrix is not symmetric.
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 |
Hey
Thank you for the quick feedback. Yes, the asymmetry was the problem with the small dataset (n=100). But I cannot get it working with 1000 individuals, the same error occurs.
Maris
… On 15 Sep 2017, at 00:41, Andrey Ziyatdinov ***@***.***> wrote:
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.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#1 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/Aecp-oJsFQgCHheoPbctzkD81H9uFP2Eks5siZ2VgaJpZM4PXIhu>.
|
Hey
I attached an .Rdata file with maatriks2 and FH2 (n=100) that works and maatriks3 and FH3 (n=200) that gives the same error. Both of the matrices (maatrik2 and maatriks3) are symmetrical. I retrieved these matrices from the same original data file with the sample command.
Maris
… On 18 Sep 2017, at 12:41, Maris Alver ***@***.***> wrote:
Hey
Thank you for the quick feedback. Yes, the asymmetry was the problem with the small dataset (n=100). But I cannot get it working with 1000 individuals, the same error occurs.
Maris
> On 15 Sep 2017, at 00:41, Andrey Ziyatdinov ***@***.*** ***@***.***>> wrote:
>
> 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.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub <#1 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/Aecp-oJsFQgCHheoPbctzkD81H9uFP2Eks5siZ2VgaJpZM4PXIhu>.
>
|
Hey
It turned out that the error occurred as some eigenvalues were negative in the matrix as the n increased. We used nearPD to get an approximation and that new matrix worked and I got my estimates.
Thanks so much for the package and help!
Maris
… On 18 Sep 2017, at 13:23, Maris Alver ***@***.***> wrote:
Hey
I attached an .Rdata file with maatriks2 and FH2 (n=100) that works and maatriks3 and FH3 (n=200) that gives the same error. Both of the matrices (maatrik2 and maatriks3) are symmetrical. I retrieved these matrices from the same original data file with the sample command.
Maris
> On 18 Sep 2017, at 12:41, Maris Alver ***@***.*** ***@***.***>> wrote:
>
> Hey
>
> Thank you for the quick feedback. Yes, the asymmetry was the problem with the small dataset (n=100). But I cannot get it working with 1000 individuals, the same error occurs.
>
> Maris
>
>
>> On 15 Sep 2017, at 00:41, Andrey Ziyatdinov ***@***.*** ***@***.***>> wrote:
>>
>> 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.
>>
>> —
>> You are receiving this because you authored the thread.
>> Reply to this email directly, view it on GitHub <#1 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/Aecp-oJsFQgCHheoPbctzkD81H9uFP2Eks5siZ2VgaJpZM4PXIhu>.
>>
>
|
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 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, |
Take care of those relationship matrices needing
|
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 |
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))
The text was updated successfully, but these errors were encountered: