I have a dataset containing n observation and a column containing observation indices, e.g.
col1 col2 col3 ID
12 0 4 1
6 5 3 1
5 21 42 2
and want to create a new column based on my index like
col1 col2 col3 ID col_new
12 0 4 1 12
6 5 3 1 6
5 21 42 2 21
without for loops. Actually I'm doing
col_new <- rep(NA, length(ID))
for (i in 1:length(ID))
{
col_new[i] <- df[i, ID[i]]
}
Is there a better or (tidyverse
) way?
For a possible tidyverse
approach, how about using dplyr::mutate
combined with purrr::map2_int
.
library(dplyr)
library(purrr)
mutate(df, new_col = map2_int(row_number(), ID, ~ df[.x, .y]))
#> col1 col2 col3 ID new_col
#> 1 12 0 4 1 12
#> 2 6 5 3 1 6
#> 3 5 21 42 2 21
Data
df <- read.table(text = "col1 col2 col3 ID
12 0 4 1
6 5 3 1
5 21 42 2", header = TRUE)
We can use row/column
indexing from base R
which should be very fast
df1$col_new <- df1[1:3][cbind(seq_len(nrow(df1)), df1$ID)]
df1$col_new
#[1] 12 6 21
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With