Created
October 26, 2015 15:35
-
-
Save yutannihilation/227a2b634a0b5fa117c7 to your computer and use it in GitHub Desktop.
Nippon、文字化け...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(Nippon) | |
| data(prefectures) | |
| kakasi(head(prefectures$name)) | |
| #> <NA> <NA> 蟯ゥ謇狗恁 螳ョ蝓守恁 <NA> <NA> | |
| #> "NA" "NA" "gyouukenkujin" "touyoyushujin" "NA" "NA" | |
| head(prefectures$name) | |
| #> [1] "北海道" "青森県" "岩手県" "宮城県" "秋田県" "山形県" | |
| kakasi(c("北海道", "青森県", "岩手県", "宮城県", "秋田県", "山形県")) | |
| #> 北海道 青森県 岩手県 宮城県 秋田県 山形県 | |
| #> "hokkaidou" "aomoriken" "iwateken" "miyagiken" "akitaken" "yamagataken" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment