扩散函数后,我想将非NA值复制到新列中。 有什么方法可以将不是NA的数据复制到新列中?
数据
Serial_ID Repair_type Col1 Col2 Coln+1
ID_1 Warranty NA 02.02.2013 NA
ID_1 Normal NA 15.10.2011 12.01.2012
ID_2 Warranty 01-01-2013 NA NA
ID_2 Normal NA NA 18.12.2014
ID_n Normal NA 23.01.2014 NA
所需结果
Serial_ID Repair_type ColX (new) ColX2 (new) Col1 Col2
ID_1 Warranty 02.02.2013
ID_1 Normal 15.10.2011 12.01.2012
ID_2 Warranty 01-01-2013
ID_2 Normal 18.12.2014
ID_n Normal 23.01.2014
请在下图上查看数据和结果: enter image description here
希望更清晰。预先谢谢你。
问候 皮奥特
传播前需要大量数据
数据:
COMM_VIN Si_DocDate COMM_Kind Cost
V1 2017-01-01 Normal 100
V1 2017-03-02 Warranty 200
V2 2015-04-04 Warranty 50
V2 2017-05-22 Warranty 100
V3 2004-05-22 Normal 150
V3 2016-06-01 Normal 250
我希望根据COMM_Kind将访问网站的日期移到COMM_VIN变量的列中
结果:
COMM_VIN COMM_Kind Col_ne1 Col_nen Cost(sum)
V1 Normal 2017-01-01 100
V1 Warramty 2015-04-04 2017-03-02 250
V2 Normal 2004-05-22 2016-06-01 400
V2 Warranty 2017-05-22 50
对不起,我不知道如何添加表格。 请参阅所附图片:enter image description here
答案 0 :(得分:0)
我认为您需要coalesce()
包中的dplyr
函数。我无法读取您的数据,但这是一个包含伪数据的示例:
library(dplyr)
df <- data_frame(
c1 = c(NA, "hey", NA),
c2 = c(NA, NA, "ho"),
c3 = c("go", NA, NA)
)
df %>% mutate(colx = coalesce(c1, c2, c3))
产生:
# A tibble: 3 x 4
c1 c2 c3 colx
<chr> <chr> <chr> <chr>
1 NA NA go go
2 hey NA NA hey
3 NA ho NA ho
答案 1 :(得分:0)
实际上,从散布数据开始,这样做很容易,然后再进行传播:
dd %>% gather("key","value",-Serial_ID, -Repair_type) %>%
filter(!is.na(value)) %>% # reverse engineer original data (if the original had NAs, you'll need this row to remove them)
group_by(Serial_ID, Repair_type) %>%
mutate(key=paste0("colx",row_number())) %>% # replace key with minimal number of keys
spread(key,value) # spread again
结果:
# A tibble: 5 x 4
# Groups: Serial_ID, Repair_type [5]
Serial_ID Repair_type colx1 colx2
<chr> <chr> <chr> <chr>
1 ID_1 Normal 15.10.2011 12.01.2012
2 ID_1 Warranty 02.02.2013 NA
3 ID_2 Normal 18.12.2014 NA
4 ID_2 Warranty 01-01-2013 NA
5 ID_n Normal 23.01.2014 NA
如果您真的想避免使用所有NA,即使在一行的末尾,也需要将NA替换为空字符串。但我不建议这样做。
以下是适用于您提供的长数据的相同解决方案:
dd %>% group_by(COMM_VIN,COMM_Kind) %>%
dplyr::mutate(Cost=sum(Cost),key=paste0("colx",row_number())) %>%
spread(key,Si_DocDate)
您会注意到,我在点差之前创建了新的费用总和列,以避免使用相同的COMM_VIN / Comm_Kind组合创建多个行。
结果:
# A tibble: 4 x 5
# Groups: COMM_VIN, COMM_Kind [4]
COMM_VIN COMM_Kind Cost colx1 colx2
<fct> <fct> <int> <fct> <fct>
1 V1 Normal 100 2017-01-01 NA
2 V1 Warranty 200 2017-03-02 NA
3 V2 Warranty 150 2015-04-04 2017-05-22
4 V3 Normal 400 2004-05-22 2016-06-01