enter image description here我在R中有一个数据集,我必须做几个总数,并且基于总计我必须计算其他列的盛大。例如 df就像
我需要像价格,交易,数量这样的总和,但我的
x = sum of price/sum of transaction
和
y = sum of qty/sum of transaction
ATV = price / transaction
UPT = qty / transactIon
我怎样才能在R中做一个完整的事情?
答案 0 :(得分:1)
在R中执行此操作非常简单。我为您提供了完成第一部分的方法,您可以完成另一部分。
以下是代码:
Price <- c(450, 500, 800)
Grandtotal_Price <- (sum(Price))
> Grandtotal_Price
[1] 1750
Transaction <- c(33, 21, 42, 96)
Grandtotal_transaction <- sum(Transaction)
ATV = Grandtotal_Price / Grandtotal_transaction
> ATV
[1] 9.114583