使用 asdfree lodown 下载 Survey of Consumer financial 的所有内容
Using asdfree lodown to download all implicates of Survey of Consumer finance
我正在尝试使用 lodown 按照 asdfree 中的示例下载完整的消费者金融调查数据文件。该代码可以无缝运行,我可以使用它来下载每年的单个牵连。我没有在目录或示例中看到如何下载 SCF 的所有 5 个暗示。
我按照asdfree 的代码下载了整个SCF。这导致每年有一个牵连并复制权重。
library(lodown)
lodown( "scf" , output_dir = file.path( path.expand( "~" ) , "SCF" ) )
我原以为这会导致每年都有牵连。 lodown 命令是否有一个选项可以下载所有暗示?
代码不只下载一个隐含的。按照第 http://asdfree.com/survey-of-consumer-finances-scf.html 页上的步骤获得 scf_imp
对象后,这里是查看第一个和第五个牵连的前几条记录的方法。谢谢
# this list contains five data.frame objects
length( scf_imp )
sapply( scf_imp , class )
# first few records of the 1st and 5th implicate of the data set
head( scf_imp[[1]] )
head( scf_imp[[5]] )
我正在尝试使用 lodown 按照 asdfree 中的示例下载完整的消费者金融调查数据文件。该代码可以无缝运行,我可以使用它来下载每年的单个牵连。我没有在目录或示例中看到如何下载 SCF 的所有 5 个暗示。
我按照asdfree 的代码下载了整个SCF。这导致每年有一个牵连并复制权重。
library(lodown)
lodown( "scf" , output_dir = file.path( path.expand( "~" ) , "SCF" ) )
我原以为这会导致每年都有牵连。 lodown 命令是否有一个选项可以下载所有暗示?
代码不只下载一个隐含的。按照第 http://asdfree.com/survey-of-consumer-finances-scf.html 页上的步骤获得 scf_imp
对象后,这里是查看第一个和第五个牵连的前几条记录的方法。谢谢
# this list contains five data.frame objects
length( scf_imp )
sapply( scf_imp , class )
# first few records of the 1st and 5th implicate of the data set
head( scf_imp[[1]] )
head( scf_imp[[5]] )