gpt4 book ai didi

r - 如何在 dplyr 的 do() 输出上使用 coef()

转载 作者:行者123 更新时间:2023-12-01 10:39:01 25 4
gpt4 key购买 nike

我的问题几乎dplyr 0.3.0.9000 how to use do() correctly 中得到了回答,但不完全是。

我有一些看起来像这样的数据:

> head(myData)
Sequence Index xSamples ySamples
6 0 5 0.3316187 3.244171
7 0 6 1.5131778 2.719893
8 0 7 1.9088933 3.122991
9 0 8 2.7940244 3.616815
10 0 9 3.6500311 3.519641

Sequence 实际上的范围是 0 到 9999。在每个 Sequence 中,xSamples 和 ySamples 都应该与 Index 成线性关系。计划是按序列对 myData 进行分组,然后在每个组上通过 do() 使用 lm()。代码是这样的(无耻地从帮助中提取):

library(dplyr)
myData_by_sequence <- group_by(myData, Sequence)
models <- myData_by_sequence %>% do(mod = lm(xSamples ~ Index, data = .))

这行得通,但我得到的结果是这样的。 . .

> head(models)
Source: local data frame [10000 x 2]

Sequence mod
1 0 <S3:lm>
2 1 <S3:lm>
3 2 <S3:lm>
4 3 <S3:lm>
5 4 <S3:lm>
6 5 <S3:lm>

. . .我想要的数据卡在第二列中。我有一个有效的 plyr 解决方案,它是这样的。 . .

models <- dlply(myData, "Sequence", function(df) lm(xSamples ~ Index, data = df))
xresult <- ldply(models, coef)

. . .由于 coef(),这给了我分解成数据框的结果。问题是我不能将 dplyr(我通常使用和喜爱)与 plyr 混合使用,而且我似乎无法让 coef() 使用 dplyr 输出的第二列。

我尝试了其他一些方法,例如尝试将 coef()lm() 这两个步骤放在一起,我可以将第二列分解成一个列表线性模型,但我不能在列表上使用 do()

我真的觉得我在这里缺少了一些明显的东西。 R 绝对不是我的主要语言。任何帮助将不胜感激。

编辑试过 。 . .

result <-
rects %>%
group_by(Sequence) %>%
do(data.frame(Coef = coef(lm(xSamples ~ Frame, data = .))))

. . .并得到非常接近的东西,但系数堆叠在同一列中:

  Sequence       Coef
1 0 -5.0189823
2 0 1.0004240
3 1 -4.9411745
4 1 0.9981858

最佳答案

尝试

library(dplyr) 
myData %>%
group_by(Sequence) %>%
do(data.frame(setNames(as.list(coef(lm(xSamples~Index, data=.))),
c('Intercept', 'Index')))
# Sequence Intercept Index
#1 0 -3.502821 0.7917671
#2 1 3.071611 0.3226020

或者使用data.table

 library(data.table)
setDT(myData)[, as.list(coef(lm(xSamples~Index))) , by = Sequence]
# Sequence (Intercept) Index
#1: 0 -3.502821 0.7917671
#2: 1 3.071611 0.3226020

数据

 myData <- structure(list(Sequence = c(0L, 0L, 0L, 0L, 0L, 1L, 1L, 1L,
1L, 1L), Index = c(5L, 6L, 7L, 8L, 9L, 15L, 6L, 9L, 6L, 10L),
xSamples = c(0.3316187,
1.5131778, 1.9088933, 2.7940244, 3.6500311, 7.3316187, 4.5131778,
9.9088933, 3.7940244, 4.6500311), ySamples = c(3.244171, 2.719893,
3.122991, 3.616815, 3.519641, 3.244171, 8.719893, 5.122991, 7.616815,
5.519641)), .Names = c("Sequence", "Index", "xSamples", "ySamples"
), class = "data.frame", row.names = c(NA, -10L))

关于r - 如何在 dplyr 的 do() 输出上使用 coef(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31542225/

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