rbind() 中的问题,无法输出相同的行号

Problem in rbind(), Cannot output with same row numbers

time3a=time3[-(1:8),]

time3a 是一个包含 60 行的数据框,在我执行操作之前 above.After 我删除了 8 rows.When 我试图使用 rbind 将它与另一个 52 行数据框 a 合并。出现这样的错误

rbind(time3a,a)

Error in rbind(deparse.level, ...) : numbers of columns of arguments do not match

这是我的 time3a 的输出 dataframe.It 可能会因为行名而导致问题。至于新的数据框是纯数字,没有应用任何修改。不知道怎么解决,有什么建议吗?

    time1 time2
    <int> <int>
9   2012    9       
10  2012    10      
11  2012    11      
12  2012    12      
13  2013    1       
14  2013    2       
15  2013    3       
16  2013    4       
17  2013    5       
18  2013    6

数据帧a

  a
<dbl>
1.71                
1.90                
2.74                
4.20                
1.45                
1.80                
2.03                
1.99                
2.32                
2.20

如果两个数据帧的长度相同,添加一个带有 time3a$a <- a$a 的新列可能有效。

根据您所说的,这可能有效 time3a$a<-a