How to add multiple rows to data frame in R

1 Answer

0 votes
df = data.frame(a = c(1, 3, 9, 0),
                b = c(12, 98, 90, 20),
                c = c(2, 4, 6, 8),
                row.names = c('o', 'p', 'q', 'r'))

print(df)

df2 = data.frame(a = c(456, 100),
                 b = c(390, 300),
                 c = c(155, 999),
                 row.names = c('x', 'y'))

print(df2)

df = rbind(df, df2)

print(df)



      
      
# run:
#
#   a  b c
# o 1 12 2
# p 3 98 4
# q 9 90 6
# r 0 20 8
#     a   b   c
# x 456 390 155
# y 100 300 999
#     a   b   c
# o   1  12   2
# p   3  98   4
# q   9  90   6
# r   0  20   8
# x 456 390 155
# y 100 300 999
# 

 



answered Jul 8, 2021 by avibootz

Related questions

1 answer 206 views
1 answer 183 views
1 answer 292 views
1 answer 237 views
1 answer 254 views
1 answer 257 views
1 answer 210 views
...