Questions tagged «mutate»

5
dplyr包可以用于条件突变吗?
当突变是有条件的(取决于某些列值的值)时,可以使用突变吗? 这个例子有助于说明我的意思。 structure(list(a = c(1, 3, 4, 6, 3, 2, 5, 1), b = c(1, 3, 4, 2, 6, 7, 2, 6), c = c(6, 3, 6, 5, 3, 6, 5, 3), d = c(6, 2, 4, 5, 3, 7, 2, 6), e = c(1, 2, 4, 5, 6, 7, …

3
带条件值的dplyr变异
在具有四列的大型数据帧(“ myfile”)中,我必须添加第五列,其值有条件地基于前四列。 首选使用dplyr和的答案mutate,主要是因为它在大型数据集中的速度很高。 我的数据框如下所示: V1 V2 V3 V4 1 1 2 3 5 2 2 4 4 1 3 1 4 1 1 4 4 5 1 3 5 5 5 5 4 ... 第五列(V5)的值基于一些条件规则: if (V1==1 & V2!=4) { V5 <- 1 } else if (V2==4 & V3!=1) { …
87 r  dplyr  mutate 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.