0
library(WDI)
library(calibrate)
WDIsearch("life expectancy")
#SP.DYN.LE00.IN
WDIsearch("population, total")
#SP.POP.TOTL
WDIsearch("GDP per capita")
#NY.GDP.PCAP.PP.CD
gapmind <- WDI(country="all", indicator = c("SP.DYN.LE00.IN", "SP.POP.TOTL", "NY.GDP.PCAP.PP.CD"), start=2015, end=2015, extra=TRUE)
當我打印gapmind,SP.DYN.LE00.IN下,還有所有的NA爲2015年我知道,API是更新的,所以爲什麼我的數據框撿起來了嗎?使用WDI API在R:數據問題
我有點糊塗了,然後,因爲其他人都在我的課似乎有它。 –