str(txt_files_df)
List of 941
$ :'data.frame': 19 obs. of 2 variables:
..$ V1: num [1:19] -2.87 4.83 21.33 25.73 32.33 ...
..$ V2: num [1:19] 8274 8274 8279 8281 8286 ...
$ :'data.frame': 19 obs. of 2 variables:
..$ V1: num [1:19] -1.8 9.2 20.2 25.7 37.8 ...
..$ V2: num [1:19] 7199 7199 7200 7202 7213 ...
This is the file that I have that basically has V1 as the x values and V2 as the y values that plot a polygon each. I have 941 sets of those and I would like to know if there is a way to combine all X values into one column and all Y value into another to become one singular large matrix. The merge function doesn't allow me to use it since they are not in the correct format but I do not know which function I should use instead. Thank you!