Is there a way to access a dataset from Kaggle without downloading it (like web loading it) onto R Studio? I have a URL for a dataset that I would like to use: https://www.kaggle.com/amoghrrao2/video-games-list?select=Windows_Games_List.csv
However, when I do
games<-read.csv("https://www.kaggle.com/amoghrrao2/video-games-list?select=Windows_Games_List.csv")
It gives me data on the website, rather than the .csv file that is listed and shown. Is there a way to solve this? My professor used a raw.githubusercontent.com/..... link using the same method, no packages or anything. Any help is appreciated!