Installation of package tidyquant

i am trying to install tidyquant package, but unfortunately i got errors which mentioned below:

ERROR: dependencies ‘PerformanceAnalytics’, ‘quantmod’, ‘tidyverse’, ‘Quandl’, ‘timetk’, ‘TTR’, ‘xts’ are not available for package ‘tidyquant’

  • removing ‘/home/nihad/R/x86_64-pc-linux-gnu-library/3.6/tidyquant’
    Warning in install.packages :
    installation of package ‘tidyquant’ had non-zero exit status

The downloaded source packages are in
‘/tmp/RtmpODAgWU/downloaded_packages’

How did you try to install it?
You can always start with installing packages that are listed in the error and then trying again, so something like:

install.packages(c(‘PerformanceAnalytics’, ‘quantmod’, ‘tidyverse’, 
                   ‘Quandl’, ‘timetk’, ‘TTR’, ‘xts’ ))

my installation was : install.packages(tidyquant), but i also tried yours, it give me same error as before

It couldn't have given you the same error since you are doing something different.

Basically, what happens if you run this command:

install.packages("PerformanceAnalytics")

?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.