Hello, I?m trying to in install the package 'glmnet' but I get always the error massage "package ?Matrix? is not available". I search on you site, but I coundn?t find the package there either. Is their still a package called "Matrix"? Or how can I use "glmnet"? Thank You in advance. Kind regards J.Hemmersbach
glmnet
3 messages · Janina Hemmersbach, Ben Bolker, Alexander Engelhardt
Janina Hemmersbach <janina.hemmersbach <at> scai.fraunhofer.de> writes:
Hello, I?m trying to in install the package 'glmnet' but I get always the error massage "package ?Matrix? is not available". I search on you site, but I coundn?t find the package there either. Is their still a package called "Matrix"? Or how can I use "glmnet"?
We need more information. What are the results of sessionInfo()? Are you using the latest version of R (at least R 2.12.x)? What repository are you using or trying to use?
Am 13.04.2011 16:58, schrieb Janina Hemmersbach:
Hello, I?m trying to in install the package 'glmnet' but I get always the error massage "package ?Matrix? is not available". I search on you site, but I coundn?t find the package there either. Is their still a package called "Matrix"? Or how can I use "glmnet"?
I had the same error when I tried
> install.packages("glmnet")
However, it worked when I first installed Matrix and then glmnet:
> install.packages("Matrix")
> install.packages("glmnet")
Have you tried this?
-- Alex