I have a data like this
df<- list(structure(list(A = c(0.1807, 0.2369, 0.2432, 0.2772, 0.2833,
0.3194, 0.407, 0.4507, 0.5023, 0.5064, 0.5183, 0.5414, 0.5527
), B = c(0.1139, 0.1417, 0.1028, 0.2472, 0.025, 0.2917, 0.3917,
0.4417, 0.4472, 0.4639, 0.5028, 0.5194, 0.5305)), .Names = c("A",
"B"), row.names = c(NA, -13L), class = "data.frame"), structure(list(
A = c(0.1807, 0.2369, 0.2432, 0.2772, 0.2833, 0.3194, 0.407,
0.4507, 0.5023), B = c(0.1139, 0.1417, 0.1028, 0.2472, 0.025,
0.2917, 0.3917, 0.4417, 0.4472)), .Names = c("A", "B"), row.names = c(NA,
-9L), class = "data.frame"), structure(list(A = c(0.1807, 0.2369,
0.2432, 0.2772), B = c(0.1139, 0.1417, 0.1028, 0.2472)), .Names = c("A",
"B"), row.names = c(NA, -4L), class = "data.frame"))
I want to have the output like this
A B A B A B
0.1807 0.1139 0.1807 0.1139 0.1807 0.1139
0.2369 0.1417 0.2369 0.1417 0.2369 0.1417
0.2432 0.1028 0.2432 0.1028 0.2432 0.1028
0.2772 0.2472 0.2772 0.2472 0.2772 0.2472
0.2833 0.025 0.2833 0.025
0.3194 0.2917 0.3194 0.2917
0.407 0.3917 0.407 0.3917
0.4507 0.4417 0.4507 0.4417
0.5023 0.4472 0.5023 0.4472
0.5064 0.4639
0.5183 0.5028
0.5414 0.5194
0.5527 0.5305
basically putting each list aside of the other one (although they are different in size)