So I have two lists:
List X is 5 lines long and takes the form of:
Thing1 1
Thing2 2
Thing3 3
Thing4 4
Thing5 5
List Y is also five lines long:
Thing1 A
Thing2 B
Thing3 C
Thing4 D
Thing5 E
The output I want is a data frame:
Things X Y
Thing1 1 A
Thing2 2 B
Thing3 3 C
Thing4 4 D
Thing5 5 E
In reality there are 500+ "Things" so I can't just name them all in the code.
Help me understand how to do this. I'm utterly lost.
Thanks!