Having written some R code on my local machine, I am now running this code on my Ubuntu Digital Ocean Droplet. I have successfully installed the package nbastatR however when I attempt to run any of the data request functions, the code will hang as if the Droplet doesn’t have the abilty to pull data into my R session.
E.g., the following code will hang when run on my Droplet (hang as in RStudio will show the red stop sign until you terminate the script). This will run within 2 seconds on my local machine.
library(nbastatR)
days_scores(game_dates = "2017-12-31", include_standings = F, return_message = T)
Is there something that needs to be enabled to allow the Droplet to access the ‘outside world’ via R?
Thanks
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Try disabling the firewall but only temporarily to see if that’s the culprit:
ufw disable
Run your code to see if it doesn’t hang. Make sure to restore the firewall afterwards:
ufw enable
Cheers
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.