循环并将结果收集到表中
我试图让 RStudio 执行以下操作:
- 运行代码 20 次“回归”
- 收集每次回归“Alpha、Beta 和 Pr 值”的结果,并以表格格式提供给我。
以下是我正在使用的回归代码:
xaxis = rnorm(500,0,1)
eval = rnorm(500,0,1)
beta = 0.5
intercept = 1.5
yaxis = intercept + beta*xaxis + eval
Regression_yxe = lm(yaxis ~ xaxis)
summary(Regression_yxe)
谢谢,
I am trying to have RStudio to:
- run a code 20 times “regression”
- gather the results from each regression “Alpha, Beta and Pr value” and give it to me ready in a table format.
Below is the regression code I am using:
xaxis = rnorm(500,0,1)
eval = rnorm(500,0,1)
beta = 0.5
intercept = 1.5
yaxis = intercept + beta*xaxis + eval
Regression_yxe = lm(yaxis ~ xaxis)
summary(Regression_yxe)
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先将你的代码变成一个函数:
然后运行该函数 20 次:
然后合并结果:
First make your code into a function:
Then run the function 20 times:
Then combine the results: