Mercurial > hg > svcore
diff data/fileio/CSVFormat.h @ 1512:c9c2aa17439a import-audio-data
Add small, signed
author | Chris Cannam |
---|---|
date | Thu, 06 Sep 2018 16:26:19 +0100 |
parents | 12b7a9613eb5 |
children | ffec849858a7 |
line wrap: on
line diff
--- a/data/fileio/CSVFormat.h Thu Sep 06 11:49:00 2018 +0100 +++ b/data/fileio/CSVFormat.h Thu Sep 06 16:26:19 2018 +0100 @@ -56,11 +56,13 @@ }; enum ColumnQuality { - ColumnNumeric = 1, - ColumnIntegral = 2, - ColumnIncreasing = 4, - ColumnLarge = 8, - ColumnNearEmpty = 16, + ColumnNumeric = 1, // No non-numeric values were seen in sample + ColumnIntegral = 2, // All sampled values were integers + ColumnIncreasing = 4, // Sampled values were monotonically increasing + ColumnSmall = 8, // All sampled values had magnitude < 1 + ColumnLarge = 16, // Values "quickly" grew to over 1000 + ColumnSigned = 32, // Some negative values were seen + ColumnNearEmpty = 64, // Nothing in this column beyond first row }; typedef unsigned int ColumnQualities;