gpt4 book ai didi

r - 将观察不完整的行添加到 data.frame

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

假设我有以下 data.frame :

    foo <- data.frame(ocean=c('Atlantic', 'Pacific'), 
city=c('Boston', 'San Francisco'),
state=c('MA', 'CA'), stringsAsFactors=F)

我想添加第三行,但在这种情况下,只指定城市并将其他字段留空。

一些无效的幼稚方法包括:
foo$city[3] <- 'Providence'
# generates an error message about replacement has 3 rows, data has 2

这也会生成错误消息
rbind(foo, data.frame(city='Providence'))
# generates an error message, number of columns of arguments do not match

我对其他用户如何处理这个感兴趣。

最佳答案

另一种方法可能是使用 rbind.fillplyr包裹。

library(plyr)
bar <- data.frame(city="Providence", stringsAsFactors=F)
str(bar)

foobar <- rbind.fill(foo, bar)
str(foobar)

head(foobar)

关于r - 将观察不完整的行添加到 data.frame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5238753/

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