gpt4 book ai didi

在 R 4.0 中替换 tibble 中的值

转载 作者:行者123 更新时间:2023-12-03 21:15:02 24 4
gpt4 key购买 nike

我刚刚从 R 3.6.2 升级到 R 4.0.0,我用来替换小标题中的值的一些功能不再起作用。我现在找不到我需要做的事情。有谁知道"new"的方式?

library(tidyverse)
v <- c(1, 2, 3)
w <- c(4, 4)
i <- 1

# Does not work anymore
df <- tibble(a = v, b = v, c = v)
df[i, 2:3] <- w

# This used to work with tibbles
df.old <- data.frame(a = v, b = v, c = v)
df.old[i, 2:3] <- w


这是我在 tibble 中得到的错误:
Error: Assigned data `w` must be compatible with row subscript `i`.
x 1 row must be assigned.
x Assigned data has 2 rows.
i Only vectors of size 1 are recycled.

谢谢,

最佳答案

在我的 R-devel 版本中,错误消息包括

ℹ Row updates require a list value. Do you need `list()` or `as.list()`?

所以这个版本的规范方式大概是 df[i, 2:3] <- as.list(w) ,它的工作原理:

library(tidyverse)
v <- c(1, 2, 3)
w <- c(4, 4)
i <- 1

df <- tibble(a = v, b = v, c = v)
df[i, 2:3] <- as.list(w)
df
#> # A tibble: 3 x 3
#> a b c
#> <dbl> <dbl> <dbl>
#> 1 1 4 4
#> 2 2 2 2
#> 3 3 3 3

创建于 2020-04-26 由 reprex package (v0.3.0)

关于在 R 4.0 中替换 tibble 中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61444678/

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