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.