| 15 | } |
| 16 | |
| 17 | type DiscreteStats struct { |
| 18 | data []string |
| 19 | summaryData [][]string |
| 20 | count int |
| 21 | unique int |
| 22 | missing int |
| 23 | counter map[string]int |
| 24 | } |
| 25 | |
| 26 | type ContinuousStats struct { |
| 27 | data []float64 |
nothing calls this directly
no outgoing calls
no test coverage detected