Web Content Display

Web Content Display (CoastWatch User Forum)

The NOAA CoastWatch Forum provides information in several categories.  The information is relevant to CoastWatch products and software (https://coastwatch.noaa.gov)  and vary in technical details.  For questions and issues not addressed here,  start a thread in the appropriate category or contact the CoastWatch HelpDesk (coastwatch.info@noaa.gov).  Please note our Privacy Policy (https://www.noaa.gov/privacy.html) and that this is a public forum.  All information is voluntarily and anonymous submissions are accepted pending review prior to posting. 

Forums

Back

RE: Issue Installing rerddapXtracto in R

MW
Morgan Winston, modified 4 Years ago.

Issue Installing rerddapXtracto in R

Youngling Posts: 12 Join Date: 9/6/17 Recent Posts

I am attempting to download the rerdappXtracto package in R and getting the following error message:

> install.packages("rerddapXtracto")
Warning in install.packages :
  package ‘rerddapXtracto’ is not available (for R version 3.6.3)

Is this really an issue with my version of R, or something else? Just wondering how you'd go about solving this. Thanks!

MA
Melanie Abecassis, modified 4 Years ago.

RE: Issue Installing rerddapXtracto in R

Youngling Posts: 65 Join Date: 6/12/17 Recent Posts

Hi Morgan, here are the instructions:

​​​​​​​If you get an error with rerddapXtracto,follow these next steps:

  1. Run this in R: .libPaths()
  2. This will tell you where your packages are installed. There will be two paths, one in Program Files, and another one (for me it's in Documents/R). You want the second one, that's your user library, not the base library.
  3. Download rerddapXtracto_0.4.8.zip and unzip it in that user library path

You should then be able to load the package in R (library('rerddapXtracto')). It might give you a warning message, but should work.

MW
Morgan Winston, modified 4 Years ago.

RE: Issue Installing rerddapXtracto in R

Youngling Posts: 12 Join Date: 9/6/17 Recent Posts

Awesome, it worked! Thanks so much Melanie!