Learn R Programming

moranajp (version 0.9.7)

add_id: Add id in each group

Description

Add id in each group

Usage

add_id(tbl, grp = "group", id = "id")

Value

A dataframe

Arguments

tbl

A dataframe

grp, id

A string to specify the column of group and id

Examples

Run this code
brk <- "EOS"
tbl <- tibble::tibble(col=c(rep("a", 2), brk, rep("b", 3), brk, rep("c", 4), brk))
add_group(tbl, col = "col") |>
  add_id(id = "id_in_group")

Run the code above in your browser using DataLab