Report this

What is the reason for this report?

R package nbastatR can't request data

Posted on January 13, 2019

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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

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

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.