How do I pipe into qsv stats? #847
-
How to pipe into qsv stats? I have an air monitoring file with "Date,Time,Value,Unit,Device,Item" columns. qsv search -s "Date" 2023-03-05 joint-clean.sample.csv | qsv search -s "Device" AM-5110 | qsv search -s "Item" Methane | qsv stats | qsv table returns nothing. If I remove "qsv stats" it returns the found data, but I'm looking for the stats summary of the found data. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
@seven-of-eleven , this is regression I inadvertently introduced when I added the I'll need to create a tempfile when getting input from stdin for stats to fix this. |
Beta Was this translation helpful? Give feedback.
@seven-of-eleven , this is regression I inadvertently introduced when I added the
sparsity
statistic. I need to do a rowcount to compute it, and doing so consumes stdin.I'll need to create a tempfile when getting input from stdin for stats to fix this.