gpt4 book ai didi

r - data.frame 中所有变量对的元素乘法总和

转载 作者:行者123 更新时间:2023-12-05 08:47:39 24 4
gpt4 key购买 nike

除了 crossprod 之外,他们的任何 BASE 函数是否简单地执行 (.1*.3)+(.2*.4) 并输出 .11 下面是我的 data.frame 吗?

注意:这是一个玩具示例,data.frame 可以有任意数量的列。

x = data.frame(a = c(.1, .2), b = c(.3, .4))

# Desired Output
(.1*.3)+(.2*.4) #= .11

crossprod(as.matrix(x))

# Current output
a b
a 0.05 0.11
b 0.11 0.25

最佳答案

c(do.call("%*%", x))

[1] 0.11

甚至

x$a%*%x$b

关于r - data.frame 中所有变量对的元素乘法总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67200142/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com