I am new to r and trying to load my api token to get access to the rnoaa package. I have the API token I just don't know how to access it. Can anyone explain how to load my API key into rnoaa using R? Thanks!
Asked
Active
Viewed 484 times
1
-
Try `options(noaakey="yourkeyhere")`. – Thomas Feb 26 '14 at 22:02
-
1@kellis13 Note that you can also pass in your key in the function call as well, e.g., `noaa_stations(stationid='COOP:010008', token="yourtoken")` – sckott Feb 26 '14 at 22:11