我有一个包含9位邮政编码的数据框。
> df a 1 900403416 2 900403416 3 900403416 4 900403416 5 900403416 6 900403416 7 900403416 8 900403416 9 900403416 10 900403416
我尝试将这些邮政编码设为5位邮政编码,但似乎清洁无法使用" clean.zipcodes(df $ a)"
>library(zipcode) > df$zip1 = clean.zipcodes(df$a) > df a zip1 1 900403416 900403416 2 900403416 900403416 3 900403416 900403416 4 900403416 900403416 5 900403416 900403416 6 900403416 900403416 7 900403416 900403416 8 900403416 900403416 9 900403416 900403416 10 900403416 900403416
有没有人知道为什么clean.zipcodes(df $ a)无效?