Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

regex - Remove everything after a string in a data frame column with missing values

I have a data frame resembling the extract below:

Observation Identifier   Value
Obs001      ABC_2001     54
Obs002      ABC_2002     -2
Obs003                   1
Obs004                   1 
Obs005      Def_2001/05  

I would like to transform this data frame into a data frame where portions of the string after the "_" sign would be removed: as illustrated below:

Observation Identifier_NoTime   Value
Obs001      ABC                 54
Obs002      ABC                 -2
Obs003                          1
Obs004                          1 
Obs005      Def  

I tried experimenting with strsplit, gsub and sub as discussed here but cannot force those commends to work. I have to account for the fact that:

  1. Column has missing values and I want to leave them where they are
  2. String "_" is located in different places in the variable
  3. I also want to leave the rest of the data frame the way it is
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You could try the below sub command to remove all the non-space characters from _ symbol.

sub("_\S*", "", string)

Explanation:

  • _ Matches a literal _ symbol.
  • S* Matches zero or more non-space characters.

OR

This would remove all the characters from _ symbol,

sub("_.*", "", string)

Explanation:

  • _ Matches a literal _ symbol.
  • .* Matches any character zero or more times.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...