重新定义行号(索引)



可能的重复项:
更改数据帧的索引号

我对数据帧执行了各种操作,并排除了许多行。正如您在我的例子中看到的,数据帧现在从 366 开始。我想将此行号重新定义为 1,当然还有以下索引号。

 -> head(new_pred)
pred_mean_temp pred_precipitation pred_visibility pred_wind
366     -0.4707149          156.00677       260.24943 12.006212
367      3.3950894           85.07009        28.66573 12.618096
368      0.9394914          276.67157        12.39165  8.249188
369     -2.9786171          147.03749        10.21351  7.432625
370     -3.5502385           24.66432        16.59086 13.495728
371     -4.2262573           37.21946        17.51434  9.309708

所以它看起来像这样:

-> head(new_pred)
pred_mean_temp pred_precipitation pred_visibility pred_wind
1     -0.4707149          156.00677       260.24943 12.006212
2      3.3950894           85.07009        28.66573 12.618096
etc.

最好的谢谢!

解决方案很简单:

 dimnames(new_pred)[[1]]<-seq_len(nrow(new_pred))
rownames(new_pred) <- seq(nrow(new_pred))更简单

rownames(x) <- NULL更简单。

相关内容

  • 没有找到相关文章

最新更新