具有列標識,列類別,列成本和列顏色的數據框。如何使用dplyr聚合數據幀的多個列
這裏是DF
library(dplyr)
id <- c(1, 1, 1, 2, 2, 3, 1)
category <- (c("V", "V", "V", "W", "W", "W", "W"))
cost <- c(10, 15, 5, 2, 14, 20, 3)
colour <- c("red", "green", "red", "green", "blue","blue","blue")
df <- data.frame(id, category, cost, colour)
df$category <- as.character(df$category)
df
id category cost colour
1 V 10 red
1 V 15 green
1 V 5 red
2 W 2 green
2 W 14 blue
3 W 20 blue
1 W 3 blue
數據框這裏是DF格式
'data.frame': 7 obs. of 4 variables:
$ id : num 1 1 1 2 2 3 1
$ category : chr "V" "V" "V" "W" ...
$ cost: num 10 15 5 2 14 20 3
$ colour : Factor w/ 3 levels "blue","green",..: 3 2 3 2 1 1 1
我想有一個新的數據幀df_new和每個ID的頻率(頻率)時,條目相等的類別條目的數量W(category_W),條目相等的類別條目的數量V(category_V),類別條目爲W(cost_W)的每個id的總成本,每個條目的總成本id類別條目是V(cost_V),並且每個唯一id是numbe每個顏色條目的顏色(col_red,col_green,col_blue)。 輸出應該看起來像
id freq category_W category_V cost_W cost_V col_red col_green col_blue
1 4 1 3 3 30 2 1 1
2 2 2 16 1 1
3 1 1 20 1
我嘗試了以下 - 但它不起作用。
df_new <- group_by(df, id) %>% summarize(freq = count(id), category_W = count(category == "W", na.rm=TRUE), category_V = count(category == "V", na.rm=TRUE), col_red = count(colour == "red", na.rm=TRUE), col_green = count(colour == "green", na.rm=TRUE), col_blue = count(colour == "blue", na.rm=TRUE))
我不知道如何插入cost_W和cost_V的條件。 我得到的錯誤:長度(行)== 1不是TRUE 非常感謝!
什麼是數據幀中的「頻率」?你的意思是「成本」? – Sotos
對不起,你當然是對的,我把它改正了成本。 – hsteini
我想你只需要添加到您的代碼:total_cost_w = sum(cost_W),如果我udnerstand您的帖子正確... – cremorna