I need to load a CSV dataset directly to R from Kaggle without pre-downloading the CSV file. I found the solution how to unzip a csv file using GET()
function from httr
package, but for that I need the URL of the download. On Kaggle I can see only the Download button link '.../download', without the exact address to the zipped csv file. Is there any way to get the link to the zipped csv file on Kaggle?
I also found the kaggler package, but it seems working only for my own datasets that are under my account. While I would like to load into R datasets uploaded by other Kaggle users. Is there any way to do it in R?
Here is an example of Kaggle dataset. I would need to load the Placement_Data_Full_Class.csv
directly into R.