1
votes

I'm trying to install the package "ddply" but keep getting this response

install.packages("ddply") Warning in install.packages : package ‘ddply’ is not available (for R version 3.6.2)

Any ideas on how to fix this?

1
There is no ddply package. It is a function from plyr install.packages('plyr')akrun

1 Answers

0
votes

The ddply is a function from the plyr package. So, if we install the plyr package, it would work

install.packages('plyr')