Error when importing data

Hello!
I'm currently learning about R Shiny through an online course. I'm learning to import data, however there's this error that keeps showing up. I've been searching about it, but I still haven't figured it out. I think it has something to do with the link, as you can see in the picture, but I'm not sure... Can somebody please help me? Thank you.

It appears you are not provisioned to access this file. The read_range() function is for accessing a Google Sheet, but the link is for a .csv file on GitHub. It can be accessed via read.csv().

Below is one way to read in the file (notice the adjusted url).

read.csv('https://raw.githubusercontent.com/DavidsonCollege/R-Shiny-For-Everyone/main/Week%203/property_data.csv')

1 Like

Didn't know about that. Thank you for your help!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.