hopefully very simple question.
I have run a couple simulations in R and I would like to combine the results. I just want them to be a full data set, the example below gives the data as I have it now:
ssgdpdata
[1] 2267855 3745197 2061319 5835743 13927068 2524601
sbln
[1] 795010.9 801039.2 973765.6 1069474.0
And the below is how I would like the data to look:
Total
[1] 2267855 3745197 2061319 5835743 13927068 2524601 795010.9 801039.2 973765.6 1069474.0
That will allow me to perform the analysis I require on the data. This data is just an example and I will have 100,000+ observations when I run the simulations properly. I assume this is a really easy fix but I have tried to merge and bind the data but I can't get it right.