John Kerl
John Kerl
`mlr check -n 1000` would be nice (and easy to code up). Meanwhile you can do ``` $ wc -l medium.dat 10000 medium.dat $ mlr put 'NR % 1000 ==...
Hi @jgarthur !! Thanks for submitting this! :) I think the `test.csv` example may be due in part to a "baseline RSS" rather than a leak issue ... there are...
if there are no embedded spaces in any column values, use `--ipprint`. if there are though ... there's no fixed-width ingestor.
@aborruso sorry "New Feature Request" -- some issues were already using this abbreviation & some weren't & in a fit of hubris I regularized some issue titles recently :^/ Really...
@Poshi this absolutely sounds like a miss, perhaps in the Go port. I absolutely treated empties as zeroes, documented that, regression-tested for it. Let me see what I missed in...
@Poshi I stand corrected. Miller 5 -> 6 (C -> Go) didn't change behavior here. What I was recalling above as being "absolutely" true was the behavior for `stats1` --...
Note `mlr step` behaves like `mlr stats1`: ``` $ mlr --c2p --from input.csv step -a rsum -f x,y,z x y z x_rsum y_rsum z_rsum 3 6 - 3 6 -...
Design: https://miller.readthedocs.io/en/latest/reference-main-null-data/#rules-for-null-handling In that wording (which goes back a long time) I clearly intended _empty plus number is number_. So the code (C and Go) and the docs are consistent....
Thanks @Poshi ! You're right, you found another inconsistency. To be clear though -- I very much think this change needs to be made; I'm in agreement. Thanks for helping...
> > $ mlr --c2p --from input.csv put '$sum = ($x???0) + ($y???0) + ($z???0)' > > @johnkerl what can I read to understand the meaning of `???0` > >...