Install tidyquant

Are there plans to support new R versions?

> install.packages('tidyquant')
Installing package into ‘/home/pranas/R/x86_64-pc-linux-gnu-library/3.4’
(as ‘lib’ is unspecified)
Warning in install.packages :
  dependency ‘PerformanceAnalytics’ is not available
trying URL 'https://cloud.r-project.org/src/contrib/tidyquant_1.0.0.tar.gz'
Content type 'application/x-gzip' length 3771595 bytes (3.6 MB)
==================================================
downloaded 3.6 MB

ERROR: dependency ‘PerformanceAnalytics’ is not available for package ‘tidyquant’
* removing ‘/home/pranas/R/x86_64-pc-linux-gnu-library/3.4/tidyquant’
Warning in install.packages :
  installation of package ‘tidyquant’ had non-zero exit status

The downloaded source packages are in
	‘/tmp/RtmpP4FN7q/downloaded_packages’
> install.packages('PerformanceAnalytics')
Installing package into ‘/home/pranas/R/x86_64-pc-linux-gnu-library/3.4’
(as ‘lib’ is unspecified)
Warning in install.packages :
  package ‘PerformanceAnalytics’ is not available (for R version 3.4.4)```

PerformanceAnalytics requires R >= 3.5 so you need to update R in order to install that package, ideally, you should update to the latest version (3.6.3)

1 Like

Thanks!
Resolved by ugrading R to 3.6

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