我有一个看起来像这样的表:
我需要它看起来像这样,其中 net=gross-tare:
我该怎么做呢?
我首先融合数据,然后转换为列,然后为净读数创建新列。
df_m <- melt(df, id = 1:3)
df_c <- cast(df_m, ... ~ variable + type)
df_c$wr_net <- df_c$wr_gross - df_c$wr_tare
df_c$wc_net <- df_c$wc_gross - df_c$wc_tare
df_c$tsa_net <- df_c$tsa_gross - df_c$tsa_tare
这使
但是现在我不知道如何融合这个表来让数据框看起来像我需要的那样,其中有一列“类型”,值为“毛”、“皮重”和“净”。
有没有更简单的方法?我用熔化/铸造吠叫错误的树吗?
您可以使用此复制我的数据的小样本...
df <- structure(list(train = structure(c(1L, 1L, 1L, 1L, 1L, 1L), .Label = "AC0485n", class = "factor"),
position = c(1L, 1L, 2L, 2L, 3L, 3L), type = structure(c(2L,
1L, 2L, 1L, 2L, 1L), .Label = c("gross", "tare"), class = "factor"),
wids_raw = c(24.85, 146.2, 26.16, 135, 24.7, 135.1), wids_corr = c(26.15,
145.43, 27.44, 134.43, 26, 134.52), tsa = c(24.1, 139.2,
25, 133.6, 24, 131.1)), .Names = c("train", "position", "type",
"wr", "wc", "tsa"), class = "data.frame", row.names = c(NA,
-6L))