Reputation: 924
I have a dataframe x
:
dput(x)
structure(list(District = structure(c(6L, 6L, 6L, 6L, 6L, 6L), .Label = c("District - Central (06)",
"District - East (04)", "District - New Delhi (05)", "District - North (02)",
"District - North East (03)", "District - North West (01)", "District - South (09)",
"District - South West (08)", "District - West (07)"), class = "factor"),
Age = structure(c(103L, 1L, 2L, 14L, 25L, 36L), .Label = c("0",
"1", "10", "100+", "11", "12", "13", "14", "15", "16", "17",
"18", "19", "2", "20", "21", "22", "23", "24", "25", "26",
"27", "28", "29", "3", "30", "31", "32", "33", "34", "35",
"36", "37", "38", "39", "4", "40", "41", "42", "43", "44",
"45", "46", "47", "48", "49", "5", "50", "51", "52", "53",
"54", "55", "56", "57", "58", "59", "6", "60", "61", "62",
"63", "64", "65", "66", "67", "68", "69", "7", "70", "71",
"72", "73", "74", "75", "76", "77", "78", "79", "8", "80",
"81", "82", "83", "84", "85", "86", "87", "88", "89", "9",
"90", "91", "92", "93", "94", "95", "96", "97", "98", "99",
"Age not stated", "All ages"), class = "factor"), Total = c(3656539L,
56131L, 58644L, 63835L, 63859L, 64945L), Rural = c(213950L,
3589L, 3757L, 4200L, 4102L, 4223L), Urban = c(3442589L, 52542L,
54887L, 59635L, 59757L, 60722L)), .Names = c("District",
"Age", "Total", "Rural", "Urban"), row.names = c(NA, 6L), class = "data.frame")
I want to split District
column to extract the name of the district into a new column Name
. E.g. "District - North West (01)" should split to give "North West".
I tried str_split_fixed
and got:
x
District Age Total Rural Urban 1 name
1 District - North West (01) All ages 3656539 213950 3442589 North West (01)
2 District - North West (01) 0 56131 3589 52542 North West (01)
3 District - North West (01) 1 58644 3757 54887 North West (01)
4 District - North West (01) 2 63835 4200 59635 North West (01)
5 District - North West (01) 3 63859 4102 59757 North West (01)
6 District - North West (01) 4 64945 4223 60722 North West (01)
I try using the same function again to split name
column to separate the district name from code, but it gives me following error:
Error in stri_split_regex(string, pattern, n = n, simplify = TRUE, opts_regex = attr(pattern, : Incorrectly nested parentheses in regexp pattern. (U_REGEX_MISMATCHED_PAREN)
Is there a way to split the character column into multiple columns based on a pattern in single function?
Upvotes: 2
Views: 6584
Reputation: 1022
You could use
library(stringr)
data.frame(str_split_fixed(df$District, " ", 3))
X1 X2 X3
1 District - North West (01)
2 District - North West (01)
3 District - North West (01)
4 District - North West (01)
5 District - North West (01)
6 District - North West (01)
You can use gsub
to remove extra things you have here ,
gsub("[[:digit:]]","",df$X3)
gsub("[[:punct:]]","",df$X3)
etc.
Upvotes: 5
Reputation: 38520
You can get what you want with gsub
:
gsub("^.* +- +([A-Za-z ]+) \\(.*$", "\\1", df$District)
[1] "North West" "North West" "North West" "North West" "North West" "North West"
The first argument to gsub
("^.* +- +([A-Za-z ]+) \(.*$") is a regular expression. It can be interpreted as follows:
From the the beginning of the string "^", match any characters ".*" followed by at least one space, a hyphen, and at least one space " +- +". Then capture the next text "()" that is made up of (at least one) letters and spaces "[A-Za-z ]+". Stop capturing when you reach a space followed by a parenthesis " \\(", then match everything until the end of the text ".*$".
The second argument of gsub
, "\\1" says replace the text with the text that was captured by the parentheses.
To assign it to a variable:
df$name <- gsub("^.* +- +([A-Za-z ]+) \\(.*$", "\\1", df$District)
Upvotes: 3
Reputation: 78832
You can also match and extract:
library(stringi)
library(dplyr)
library(purrr)
mutate(x,
name=map_chr(stri_match_all_regex(District, "- ([[:alpha:]]+ [[:alpha:]]+) "), function(x) x[,2]),
code=map_chr(stri_match_all_regex(District, "\\(([[:digit:]]+)\\)"), function(x) x[,2]))
## District Age Total Rural Urban name code
## 1 District - North West (01) All ages 3656539 213950 3442589 North West 01
## 2 District - North West (01) 0 56131 3589 52542 North West 01
## 3 District - North West (01) 1 58644 3757 54887 North West 01
## 4 District - North West (01) 2 63835 4200 59635 North West 01
## 5 District - North West (01) 3 63859 4102 59757 North West 01
## 6 District - North West (01) 4 64945 4223 60722 North West 01
Upvotes: 2