Hi everyone.
I did a mixed-models analysis in Jamovi.
I wonder if I can access to the R used to run that analysis?
Thanks,
JT
Mixed-models - R code
Re: Mixed-models - R code
Ok, found it. But I am troubles running it in R. Any suggestions? thanks
> install.packages("gamlj")
Installing package into ‘C:/Users/....’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘gamlj’ is not available for this version of R
A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/ ... g-packages
> install.packages("gamlj")
Installing package into ‘C:/Users/....’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘gamlj’ is not available for this version of R
A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/ ... g-packages
Re: Mixed-models - R code
gamlj isn't available from CRAN just yet, but you should be able to install it with the remotes package. install the remotes package first if you haven't already:
install.packages('remotes')
then once you've done that, you should be able to install gamlj with:
remotes::install_github('gamlj/gamlj')
cheers
jonathon
install.packages('remotes')
then once you've done that, you should be able to install gamlj with:
remotes::install_github('gamlj/gamlj')
cheers
jonathon
Re: Mixed-models - R code
Hi, Jonathon.jonathon wrote:then once you've done that, you should be able to install gamlj with:
remotes::install_github('gamlj/gamlj')
Marcello, some time ago made some changes, this step should find and install gamlj:
Code: Select all
remotes::install_github(
repo = "mcfanda/gamlj",
dependencies = TRUE,
force = TRUE,
upgrade_dependencies = TRUE
)
packageVersion("gamlj")
Maurizio
Re: Mixed-models - R code
Thank you, Jonathan.
Well, I have faced other issues... but I guess I will just wait.
BR
Well, I have faced other issues... but I guess I will just wait.
