dfin <-
ID SEQ GRP C1 C2 C3 T1 T2 T3
1 1 1 0 5 8 0 1 2
1 2 1 5 10 15 5 6 7
2 1 2 20 25 30 0 1 2
C1
is the concentration (CONC
) at T1 (TIME
) and so on. This is what I want as an output:
dfout <-
ID SEQ GRP CONC TIME
1 1 1 0 0
1 1 1 5 1
1 1 1 8 2
1 2 1 5 5
1 2 1 10 6
1 2 1 15 7
2 1 2 20 0
2 1 2 25 1
2 1 2 30 2
The dfin
has much more columns for Cx
and Tx
where x is the number of concentration readings.
You can do this with
data.table::melt
, with its capability of melting the table into multiple columns based on the columns pattern:Or if the value column names follow the pattern
[CT][0-9]
, you can usereshape
from base R by specifying thesep=""
which will split the value columns name by the letter/digit separation due to this default setting (from ?reshape):