I have a .dbf file I exported from ArcGIS 10.1 and I need to reorganize the it. An example of the data is:
V1 V2
40.000000000000000 41.000000000000000
40.000000000000000 42.000000000000000
41.000000000000000 40.000000000000000
41.000000000000000 42.000000000000000
41.000000000000000 43.000000000000000
42.000000000000000 40.000000000000000
42.000000000000000 41.000000000000000
42.000000000000000 43.000000000000000
43.000000000000000 41.000000000000000
43.000000000000000 42.000000000000000
I need the data in a format where there is only one row for each unique value in the first column, with all of the corresponding values from the second column now appearing in that row, for example:
V1 V2 V3 V4
40.000000000000000 41.000000000000000 42.000000000000000
41.000000000000000 40.000000000000000 42.000000000000000 43.000000000000000
42.000000000000000 40.000000000000000 41.000000000000000 43.000000000000000
43.000000000000000 41.000000000000000 42.000000000000000
If anyone can help me with this problem I would appreciate it. Thanks!
You can split up your data frame using the
split
function on the first column and the uselapply
to extract your vectors:Most would probably prefer to keep the data in this format, but you can also combine the list into a matrix, right-padding the vectors with
NA
values: