Hi guys,
I am trying to install papaya and get following message:
Warning in install.packages : package ‘papaja’ is not available (for R version 3.6.2)
Do you have any alternative package recommendations for this R version?
Thanks!
Hi guys,
I am trying to install papaya and get following message:
Warning in install.packages : package ‘papaja’ is not available (for R version 3.6.2)
Do you have any alternative package recommendations for this R version?
Thanks!
Hi, and welcome!
Please see the FAQ: What's a reproducible example (`reprex`) and how do I do one? Using a reprex, complete with representative data will attract quicker and more answers. This question doesn't require it, though.
Packages like this one that are still in development can often be installed from github
.
First install the devtools
package
if(!"devtools" %in% rownames(installed.packages())) install.packages("devtools")
then
devtools::install_github("crsh/papaja@devel")
Thank you!
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.