@EZGraphs on Twitter writes: \"Lots of online csvs are zipped. Is there a way to download, unzip the archive, and load the data to a data.frame using R? #Rstats\"
I
Try this code. It works for me:
unzip(zipfile="", exdir="")
Example:
unzip(zipfile="./data/Data.zip",exdir="./data")