Another look at csv-mode

I felt that the other CSV transpose demo I posted was a little difficult to follow. To recap I had a 2D array this.

1,2,3,4
1,2,3,4
1,2,3,4
1,2,3,4

Then used Meta-x csv-transpose to rotate it:

1,1,1,1
2,2,2,2
3,3,3,3
4,4,4,4

I wanted to show you this new demo, so you can see how csv-mode help you quickly visualize the data in a CSV row.

Use Meta-x csv-unalign-fields to turn off the visual padding and delimiter hiding that csv-mode adds.