I have a single object unique_object that I would like to bind to multiple objects object1, object2, object3 e.tc..., without transforming the multiple objects into a single list and I cannot figure out how I would do it:
I have tried passing cbind a list of the different objects, but I believe r interprets it as a single object comprised of all of those objects:
cbind(list(object1,object2,object3,object4 e.t.c... ), unique_object)
unique_object and object1, object2, etc. are of the same length.