http://s.wordpress.org/resources/survey/wp2011-survey.tar.gz
gerçekleştirebilirsiniz bir komut var mı?
Teşekkürler. Düşüncesizce, ben tar dosyasına ulaşmak ve bunu ortaya koymadan, uygun csv dosyasını okumak için bir yol bilmiyorum
http://s.wordpress.org/resources/survey/wp2011-survey.tar.gz
gerçekleştirebilirsiniz bir komut var mı?
Teşekkürler. Düşüncesizce, ben tar dosyasına ulaşmak ve bunu ortaya koymadan, uygun csv dosyasını okumak için bir yol bilmiyorum
fn <- "http://s.wordpress.org/resources/survey/wp2011-survey.tar.gz"
download.file(fn,destfile="tmp.tar.gz")
untar("tmp.tar.gz",list=TRUE) ## check contents
untar("tmp.tar.gz")
## or, if you just want to extract the target file:
untar("tmp.tar.gz",files="wp2011-survey/anon-data.csv")
X <- read.csv("wp2011-survey/anon-data.csv")
... en
Ayrıca bir tarball içinde sadece belirli bir dosyayı açmak mümkün mü? Sanırım 'untar'daki' files' argüman bunu yapar ama emin değilim ne ?? Yardım .. – Ashwin
bkz. Düzenleme ...... –
Bak '? Untar' – James
Olası yinelenen? http://stackoverflow.com/questions/3053833/using-r-to-download-zipped-data-file-extract-and-import-data – joran
Başka bir kopya mı? http://stackoverflow.com/questions/7044808/using-r-to-download-gzipped-data-file-extract-and-import-data/7045059#7045059 – Ramnath