0

I have two tables, each are a list of numbers like:

Table A:

3.5
3.4

Table B:

3.2
3.1

I want to make a new table like this:

Table C
Column A     Column B
3.5          3.2
3.4          3.1

When I try and add them together like: table_c <- c(Table A, Table B) then I get the two tables added together rather than a new table of both columns.

I cannot use tibble because they are of different sizes.

Alex
  • 627
  • 3
  • 12
  • 32
  • https://stackoverflow.com/questions/3699405/how-to-cbind-or-rbind-different-lengths-vectors-without-repeating-the-elements-o Does this not solve your issue? If not, can you provide some more detail please? – Serkan Mar 21 '21 at 22:53
  • This just looks like `C <- cbind(A, B)` Have you tried that? – Ronak Shah Mar 22 '21 at 04:55

0 Answers0