Although it’s not as pretty, the column(1) (core?)util does something similar. Given the example input from the README for Miller, throwing it through column -s ',' -t produces this output:
Of course, you don’t get the processing language that Miller appears to provide for more complex data mangling. It looks like a very nice tool for that sort of thing.
It is a really nice tool. However, when the authors say it is complementary to R, I wonder what miller can do that can’t be done with the same ease in R using hadleyverse. Here is the equivalent of the initial example.
See also, xsv.
…and csvkit.
Although it’s not as pretty, the
column(1)
(core?)util does something similar. Given the example input from the README for Miller, throwing it throughcolumn -s ',' -t
produces this output:Of course, you don’t get the processing language that Miller appears to provide for more complex data mangling. It looks like a very nice tool for that sort of thing.
It is a really nice tool. However, when the authors say it is complementary to R, I wonder what miller can do that can’t be done with the same ease in R using hadleyverse. Here is the equivalent of the initial example.
compared to