I have the DF
data.frame
. I would like to add another column
(i.e., call it station_no)
where it will extrac
t the number
after underscore
from the Variables column
.
library(lubridate)
library(tidyverse)
set.seed(123)
DF <- data.frame(Date = seq(as.Date("1979-01-01"), to = as.Date("1979-12-31"), by = "day"),
Grid_2 = runif(365,1,10), Grid_20 = runif(365,5,15)) %>%
pivot_longer(-Date, names_to = "Variables", values_to = "Values")
Desired Output:
DF_out <- data.frame(Date = c("1979-01-01","1979-01-01"),Variables = c("Grid_2","Grid_20"),
Values = c(0.95,1.3), Station_no = c(2,20))
Easy option is
parse_number
which returns numeric converted valueOr using
str_extract
(in case we want to go by the pattern)Or using
base R