(columnStats)
| 78 | } |
| 79 | |
| 80 | export function buildNumericColumnList(columnStats) { |
| 81 | return columnStats.filter((column) => column.isNumeric).map((column) => column.name); |
| 82 | } |
| 83 | |
| 84 | export function inferBestNumericColumns(columnStats) { |
| 85 | const numericColumns = buildNumericColumnList(columnStats); |
no outgoing calls
no test coverage detected