filter.js

  1. import { curry, filter as _filter } from "ramda"
  2. /**
  3. * Filter dataframe rows by using a filtering function.
  4. *
  5. * Accepts a test function that determines which rows of the supplied
  6. * dataframe are returned.
  7. *
  8. * @func
  9. * @memberOf Z
  10. * @category Manipulation
  11. * @param {Function} func A filtering function
  12. * @param {df} dataframe Zebras dataframe to filter
  13. * @return {df} Zebras dataframe
  14. * @example
  15. *
  16. * const df = [{"label": "A", "value": 2}, {"label": "B", "value": 10}, {"label": "C", "value": 30}]
  17. * Z.filter(r => r.value >= 10, df)
  18. * // [{"label": "B", "value": 10}, {"label": "C", "value": 30}]
  19. */
  20. const filter = curry((func, df) => _filter(func, df))
  21. export default filter