I have a data frame that looks like:
> ta ranks omp ALLA1 1 512 4 772.9 2 1024 2 769.9 3 2048 1 914.2 4 256 8 932.3 5 128 16 1352.0 6 256 16 948.4 7 512 8 761.5 8 1024 4 667.9 9 2048 2 744.9 10 4096 1 956.7
and I want to end up with some kind of matrix that looks like:
256 512 1024 2048 4096 1 914.2 956.7 2 769.9 744.9 4 772.9 667.9 8 932.3 761.5 16
I'm not too fussed what appears in missing entries.