有没有办法将R公式应用于整个Excel表格

问题描述 投票:0回答:1

我有以下代码可以在R中应用:

qnorm(0.975)*sqrt(p*(1-p)/n)

通常,我会输入单独的 p 和 n 值来获取输出。但是,我有很多 Excel 格式的数据,为了节省时间,我想将上述代码应用到 R 中附加的 Excel 文件,数据格式如下。 Excel 文件中的示例包含以下格式的数据:

enter image description here

非常感谢!

r excel statistics analysis proportions
1个回答
0
投票

是的,您需要导入 Excel 文件,例如使用

readxl
包。你可以这样安装;

install.packages("readxl")

上传包并读取您的文件:

library(readxl)
df <- read_excel("your file name here")

您可以将公式应用到 dplyr 管道中:

library(dplyr)
df <- df |>
mutate(result=qnorm(0.975)*sqrt(P*(1-P)/N))
© www.soinside.com 2019 - 2024. All rights reserved.