- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果某些列名不存在,如何忽略数据集?
我有一个来自流的天气数据列表,但我认为某些关键天气条件不存在,因此我在下面有此错误 rbind
:
Error in rbind(deparse.level, ...) :
numbers of columns of arguments do not match
weatherDf <- data.frame()
for(i in weatherData) {
# Get the airport code.
airport <- i$airport
# Get the date.
date <- as.POSIXct(as.numeric(as.character(i$timestamp))/1000, origin="1970-01-01", tz="UTC-1")
# Get the data in dailysummary only.
dailySummary <- i$dailysummary
weatherDf <- rbind(weatherDf, ldply(
list(dailySummary),
function(x) c(airport, format(as.Date(date), "%Y-%m-%d"), x[["meanwindspdi"]], x[["meanwdird"]], x[["meantempm"]], x[["humidity"]])
))
}
meanwindspdi
meanwdird
meantempm
humidity
> write.table(weatherData,"/home/teelou/Desktop/data/data.txt",sep="\t",row.names=FALSE)
Error in data.frame(date = list(pretty = "January 1, 1970", year = "1970", :
arguments imply differing number of rows: 1, 0
target_names <- c("meanwindspdi", "meanwdird", "meantempm", "humidity")
# If it has data then loop it.
if (!is.null(weatherData)) {
# Initialize a data frame.
weatherDf <- data.frame()
for(i in weatherData) {
if (!all(target_names %in% names(i)))
next
# Get the airport code.
airport <- i$airport
# Get the date.
date <- as.POSIXct(as.numeric(as.character(i$timestamp))/1000, origin="1970-01-01", tz="UTC-1")
# Get the data in dailysummary only.
dailySummary <- i$dailysummary
weatherDf <- rbind(weatherDf, ldply(
list(dailySummary),
function(x) c(airport, format(as.Date(date), "%Y-%m-%d"), x[["meanwindspdi"]], x[["meanwdird"]], x[["meantempm"]], x[["humidity"]])
))
}
# Rename column names.
colnames(weatherDf) <- c("airport", "key_date", "ws", "wd", "tempi", 'humidity')
# Convert certain columns weatherDf type to numberic.
columns <-c("ws", "wd", "tempi", "humidity")
weatherDf[, columns] <- lapply(columns, function(x) as.numeric(weatherDf[[x]]))
}
weatherDf
:
> View(weatherDf)
Error in .subset2(x, i, exact = exact) : subscript out of bounds
最佳答案
您可以使用 next
跳过循环的当前迭代并转到下一次迭代:
target_names <- c("meanwindspdi", "meanwdird", "meantempm", "humidity")
for(i in weatherData) {
if (!all(target_names %in% names(i)))
next
# continue with loop...
关于R rbind - 参数列数不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41704855/
我需要重新绑定(bind)两个大数据帧。现在我用的是 df 根据 nikola 的评论,这里是 ?rbindlist 的描述(v1.8.2 中的新增功能): Same as do.call("rbi
我想使用以下代码将列表转换为数据框: ls<-list(a=c(1:4),b=c(3:6)) do.call("rbind",ls) 添加do.call得到的结果如下图。它返回一个 data.fram
data.table 在更新(=rbind)新行时比 xts 慢近 6 倍的原因是什么? library(quantmod); library(xts); library(data.table) XT
我有一个数据框,其中一列包含不同长度的列表: IP 100 万)时,它会永远运行并崩溃。 有没有办法将其有效地应用于更大的数据集? 谢谢! 最佳答案 所有解决方案都没有重复 plyr::ldply正在
这个问题在这里已经有了答案: do.call(rbind, list) for uneven number of column (4 个回答) Efficient way to rbind data.
我正在尝试使用 dif.length of rows rbind 两个 txt 文件,例如: 我使用这个代码: a<-matrix(1:12,4,3) b<-matrix(21:41,7,3) set
我有一个 list的 list的矩阵。每个list具有相同数量的matrices其中每个 matrix具有相同的列数: set.seed(1) mat.lol % map(do.call, what=
这个问题在这里已经有了答案: Reshaping multiple sets of measurement columns (wide format) into single columns (lo
这有所有迹象表明它是如此愚蠢,以至于我会后悔在公共(public)论坛上提出它,但我现在已经难倒了一些人,所以c'est la vie。 我正在运行以下代码块,但没有得到我期望的结果: zz pad
我有 2 个不同长度的向量: vec1 <- rnorm(18, mean = 0.0018, sd = 0.0001) names(vec1) <- c("CSF", "D10", "D13", "
这个问题在这里已经有了答案: rbind dataframes in a list of lists (3 个答案) 关闭 9 年前。 我想 rbind ALIST 中的所有 a 数据帧 - 我该怎
我有 12 个数据框,每个包含 6 列:5 个名称相同,1 个不同。然后当我调用 rbind()我得到: Error in match.names(clabs, names(xi)) : name
这个问题在这里已经有了答案: Combine (rbind) data frames and create column with name of original data frames (7 个回
我有两个要附加在一起的 data.frames。一个 data.frame 保存过去的数据,另一个 data.frame 保存 future 的预测数据。例如: past rbind(past,fu
我正在尝试将一个命名向量绑定(bind)到一个矩阵上。命名向量的长度与矩阵不同: > m named_vec names(named_vec) rbind(m, named_vec) 我得到以下
示例数据: l <- list(x=data.frame(X1=1,X2=2,X3=3,X4=4,X5=5), y=data.frame(X1=6,X8=7,X4=8,X9=9,X
> part1 part1 key x 1 5 b # key==5,x==b 2 6 d 3 7 a 4 8 c 5 9 b > part2 part2 key x 1
我有大量数据框,我想使用 rbind 将它们组合成一个大数据框。 我在这里看到了这样做的解决方案,但他们假设数据帧存储在数据帧列表中。我的不是,而且我不知道有什么好方法可以将它们全部放入列表中,而无需
我用过这段代码 outcomes_all% theme_zebra %>% autofit ft # Create a temp file tmp % body_add_flextable
我在 R 中工作,我有一个数据集,它是矩阵列表的列表。主列表中的每个子列表都有两个等维矩阵(10 行 x 2 列)。我想将每个矩阵列表 rbind() 变成一个矩阵(20 行 x 2 列)。但我不想将
我是一名优秀的程序员,十分优秀!