Description Usage Arguments Details Value Examples
This function is to parse Korea address string as per administrative areas.
1 | KAParse(dfDirtyJuso, columnName)
|
dfDirtyJuso |
Input data frame |
columnName |
column name of input data frame, which will be parsed |
KAParse read only the column which is pointed by columnName parameter, and add new columns for administrative areas such as SiDoMyeong, SiGunGuMyeong. If we can't find appropriated administrative area, we mark 'x' to its corresponding column.
data frame is reaturned and it have administrative areas as new columns
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Please visit below to see the correct example.
# https://github.com/skysign/KoreaAddressAPI/blob/master/examples/KRA_example.rmd
#
# To pass build without error, we should not describe anything in Korean, here.
library(KoreaAddressAPI)
dirtyJuso = c('',
'')
dfDirtyJuso = data.frame(dirtyJuso)
dfDirtyJuso
dfCleaned = KAParse(dfDirtyJuso, 'dirtyJuso')
dfCleaned
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.