gbMin.js

  1. import { keys, reduce, min, curry } from "ramda"
  2. /**
  3. * Calculate min for grouped objects.
  4. *
  5. * Use it on groupBy objects - the output of Z.groupBy() - to analyze groups.
  6. *
  7. * @func
  8. * @memberOf Z
  9. * @category Analysis
  10. * @param {String} col Column within the groups to be analyzed
  11. * @param {Object} groupByObj Object grouped by a column
  12. * @return {df} Dataframe with the calculated statistics
  13. * @see Z.groupBy, Z.gbStd, Z.gbMax, Z.gbCount, Z.gbSum, Z.gbMean, Z.gbDescribe
  14. * @example
  15. *
  16. * const df = [{"label": "A", "value": 7}, {"label": "A", "value": 3}, {"label": "B", "value": 2}, {"label": "B", "value": 5}, {"label": "C", "value": 75}]
  17. * Z.gbMin("value", Z.groupBy(d => d.label, df))
  18. * // [{"group": "A", "min": 3}, {"group": "B", "min": 2}, {"group": "C", "min": 75}]
  19. */
  20. const gbMin = curry((col, groupByObj) => {
  21. const groups = keys(groupByObj)
  22. const result = groups.map(g => ({
  23. group: g,
  24. min: reduce((acc, value) => min(acc, value[col]), Infinity, groupByObj[g]),
  25. }))
  26. return result
  27. })
  28. export default gbMin