Get the strings before the comma with R

后端 未结 5 515
清酒与你
清酒与你 2020-12-31 07:16

I am a beginner with R. Now, I have a vector in a data.frame like this

city
Kirkland,
Bethesda,
Wellington,
La Jolla,
Berkeley,
Costa, Evie KW172NJ
Miami,
P         


        
5条回答
  •  粉色の甜心
    2020-12-31 07:48

    If the this was a column in a dataframe, we can use tidyverse.

    library(dplyr)
    x <- c("London, UK", "Paris, France", "New York, USA")
    x <- as.data.frame(x)
    x %>% separate(x, c("A","B"), sep = ',')
            A       B
    1   London      UK
    2    Paris  France
    3 New York     USA
    

提交回复
热议问题