I would like to import/read the Coaid dataset from Github into RStudio. The dataset is a zip file containing 4 files which each file containing multiple csv files. The following is the link to the Coaid dataset from GitHub: https://github.com/cuilimeng/CoAID.git
I tried the following, ie downloading each file from the one of the folders: eg: ClaimFakeCOVID_19<-read_csv("C:/Clive/Documents/R/CoAID-master/05-01-2020/ClaimFakeCOVID-19.csv") ClaimFakeCOVID_19_tweets<-read_csv("C:/Clive/Documents/R/CoAID-master/05-01-2020/ClaimFakeCOVID-19_tweets.csv"). This is just two of the 12 files from the first folder and there are four folders. I could download the files each file at a time. I feel there is a way, simple R code that I might use the download the zip file and read it into R studio for furter analyis. My current approach appears to work, however, it is cumbersome. Is there anyone who can inform me as to how might do this. A very simple step by step process will help me,
Thanks.