Watts-College / cpp-525-spr-2022

https://watts-college.github.io/cpp-525-spr-2022/
0 stars 0 forks source link

Lab 1: no "Wats" package for R #3

Open JPRayes opened 2 years ago

JPRayes commented 2 years ago

Does anyone know how to install the "Wats" package for time series plots? I tried loading it in R and finding the package on CRAN but I cannot find it.

Dselby86 commented 2 years ago

It looks like the Wats package was removed from CRAN.

Before I update the instructions for the lab. Can you try and see if this code works to install Wats?

install.packages("devtools") devtools::install_github(repo="wibeasley/Wats")

On Wed, Mar 16, 2022 at 5:23 AM JPRayes @.***> wrote:

Does anyone know how to install the "Wats" package for time series plots? I tried loading it in R and finding the package on CRAN but I cannot find it.

— Reply to this email directly, view it on GitHub https://github.com/Watts-College/cpp-525-spr-2022/issues/3, or unsubscribe https://github.com/notifications/unsubscribe-auth/AB4EHBZ4LACPU6LJRDZFPKLVAHHDDANCNFSM5Q3WWLKQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

JPRayes commented 2 years ago

This is the Error I get when loading that code:

Error: package or namespace load failed for ‘devtools’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): namespace ‘cli’ 3.0.1 is already loaded, but >= 3.1.0 is required

Dselby86 commented 2 years ago

Try this command from the Lecture.

devtools::install_github( repo="OuhscBbmc/Wats" )

You may have to update your devtools package.