Fundamentals of String Manipulation

data science programming R string manipulation

String manipulation in R.

Danielle Brantley https://gist.github.com/danielle-b
02-21-2020

In previous posts, I’ve worked with variables with numerical data. This post will focus on working on variables with character data. The data set that I am using for this post was posted on Tidy Tuesday’s Github. This data set comes from Spotify and provides information about popular songs and their genres. So let’s get started!

Subsetting a String

In this lesson, I worked with a tidyverse package called stringr. The stringr package contains tools for combining, splitting, adding, and removing spaces from, and other performing other useful string data manipulations. Functions in the stringr package all begin with the prefix str_ and RStudio’s autocomplete feature makes this package especially fun to work with!

I’ll first discuss a function I learned can subset strings, str_sub(). The str_sub function takes a string, subsets it based on positions of characters within the string, and returns a new string containing only the characters between the specified positions. The string that’s returned includes the characters of the positions specified as well as those between them. All characters are included, even spaces.

Let’s look at an example. I am working with the data frame called spotify_songs and I want to subset the track_artist variable and return a new vector consisting of the first nine letters of each artist. I indexed the track_artist variable to include only the first twenty artists. I then subset the variable from left to right by position with 1 and 9 representing the position numbers.

str_sub(spotify_songs$track_artist[1:10], 1, 9)
 [1] "Ed Sheera" "Maroon 5"  "Zara Lars" "The Chain" "Lewis Cap"
 [6] "Ed Sheera" "Katy Perr" "Sam Feldt" "Avicii"    "Shawn Men"

I can see here that the function resulted in a return of strings with only the characters between the specified positions.

To subset the same track_artist variable from right to left by position, I use a minus sign (–) before the position number, like so:

str_sub(spotify_songs$track_artist[1:10], -9, -1)
 [1] "d Sheeran" "Maroon 5"  "a Larsson" "insmokers" "s Capaldi"
 [6] "d Sheeran" "aty Perry" "Sam Feldt" "Avicii"    "wn Mendes"

Note that the sub_str() function is vectorized. I could apply it to a vector and it will return a new vector.

Splitting A String

Another technique for subsetting strings is splitting strings using the str_split() function. Unlike the str_sub() function, the str_split() function is not dependent on position. The str_split() function is used to split a string into pieces. The place where the string is split is called the delimeter. The delimeter refers to a space, comma, another character or characters.

Let’s look at what happens when I use the str_split() function to split the strings listed in the first example.

artist_match <-str_sub(spotify_songs$track_artist[1:6], 1, 9)
str_split(artist_match, " ")
[[1]]
[1] "Ed"     "Sheera"

[[2]]
[1] "Maroon" "5"     

[[3]]
[1] "Zara" "Lars"

[[4]]
[1] "The"   "Chain"

[[5]]
[1] "Lewis" "Cap"  

[[6]]
[1] "Ed"     "Sheera"
artist_match[1:6]
[1] "Ed Sheera" "Maroon 5"  "Zara Lars" "The Chain" "Lewis Cap"
[6] "Ed Sheera"

From the photos, I can see that the string split occurred where there is a space. I can also see that by default the output is a list.

I can use the simplify = TRUE argument to simplify the output into a matrix, like so:

artist_match_split <-str_split(artist_match, " ", simplify = TRUE)
artist_match_split[1:6]
[1] "Ed"     "Maroon" "Zara"   "The"    "Lewis"  "Ed"    

Combining Strings

The function for combining strings is called str_c().

I’ll use str_c() to combine multiple strings from my spotify_songs data frame into a single variable.

Let’s see what happens when I combine the variables track_name and track_artist into one variable.

str_c(spotify_songs$track_name[1:6], spotify_songs$track_artist[1:6])
[1] "I Don't Care (with Justin Bieber) - Loud Luxury RemixEd Sheeran"
[2] "Memories - Dillon Francis RemixMaroon 5"                        
[3] "All the Time - Don Diablo RemixZara Larsson"                    
[4] "Call You Mine - Keanu Silva RemixThe Chainsmokers"              
[5] "Someone You Loved - Future Humans RemixLewis Capaldi"           
[6] "Beautiful People (feat. Khalid) - Jack Wins RemixEd Sheeran"    

I can use the sep= argument within the str_c() function to specify characters to place between the strings I’m combining.

[1] "I Don't Care (with Justin Bieber) - Loud Luxury Remix Ed Sheeran"
[2] "Memories - Dillon Francis Remix Maroon 5"                        
[3] "All the Time - Don Diablo Remix Zara Larsson"                    
[4] "Call You Mine - Keanu Silva Remix The Chainsmokers"              
[5] "Someone You Loved - Future Humans Remix Lewis Capaldi"           
[6] "Beautiful People (feat. Khalid) - Jack Wins Remix Ed Sheeran"    

Padding A String

This is where I deviated from DataQuest a bit. After reading this section of the lesson, I was a bit confused. So I decided to do some research and came across this tidyverse documentation describing how to pad a string.

The stringr function, str_pad() lets me specify characters into an existing string to make it a specified length.

The function takes as arguments:

Stringr Documentation
Stringr Documentation

I have a few examples where I experimented with padding strings.

str_pad("Zara Larsson", c(8, 16, 24))
[1] "Zara Larsson"             "    Zara Larsson"        
[3] "            Zara Larsson"
str_pad(c("Ed Sheeran", "Maroon 5", "Zara Larsson"), 10)
[1] "Ed Sheeran"   "  Maroon 5"   "Zara Larsson"
rbind(
  str_pad("Ed Sheeran", 20, "left"),
  str_pad("Maroon 5", 20, "right"),
  str_pad("Zara Larsson", 20, "both")
)
     [,1]                  
[1,] "          Ed Sheeran"
[2,] "Maroon 5            "
[3,] "    Zara Larsson    "

I can check the length of the strings in my vector using the str_length function. The str_length function returns a vector containing the number of characters in each string.

For example, I took the strings from one of my str_pad() functions and called the str_length() function on them, I got the following result.

str_length("Maroon 5")
[1] 8
str_length("Ed Sheeran")
[1] 10
str_length("Zara Larsson")
[1] 12

I can see that the “Ed Sheeran” string has 10 characters, the “Maroon 5” string also has 8 characters, and “Zara Larsson” has 12 characters.

That just about covers it for string manipulation. This was a fun lesson! This lesson also marks the end of the Intermediate R Programming course in the Data Analyst in R track. I’m moving on to data visualization! Until next time…

Citation

For attribution, please cite this work as

Brantley (2020, Feb. 21). Data Sci Dani: Fundamentals of String Manipulation. Retrieved from https://datascidani.com/posts/2020-02-21-fundamentals-of-string-manipulation/

BibTeX citation

@misc{brantley2020fundamentals,
  author = {Brantley, Danielle},
  title = {Data Sci Dani: Fundamentals of String Manipulation},
  url = {https://datascidani.com/posts/2020-02-21-fundamentals-of-string-manipulation/},
  year = {2020}
}