Code Monkey home page Code Monkey logo

Comments (4)

jheer avatar jheer commented on May 14, 2024 1

Like so? (v4+):

dt.rollup({ values: op.array_agg_distinct(‘risk’) })
  .get(‘values’, 0)

That is the most efficient route... Also note that your examples are not equivalent. In particular, Set will treat different Date objects with the same date-time as distinct values, Arquero will treat them as the same value and de-duplicate it.

from arquero.

jheer avatar jheer commented on May 14, 2024 1

dt.groupby('risk').count().columnArray('risk') works but is much less efficient: it first builds a map to get the unique groupby values, generates a new internal column containing all groupby index keys for the input table, and then calculates the counts as well.

The array_agg_distinct aggregate function is much more efficient in terms of both time and memory so I would recommend it. If you find the syntax is too verbose, you could consider adding a new table method for convenience:

aq.addTableMethod('distinctArray', (table, columnName) => {
  return table.rollup({ values: op.array_agg_distinct(columnName) }).get('values', 0);
});

// ...
dt.distinctArray('risk') // now returns array of distinct values

from arquero.

ericemc3 avatar ericemc3 commented on May 14, 2024

ok, thank you for the caveat regarding Set and Date objects.

I think i will go on with
dt.groupby('risk').count().columnArray('risk')

which seems to me a bit easier to recall and teach

from arquero.

ericemc3 avatar ericemc3 commented on May 14, 2024

Thank you for the hint, i should really use addTableMethod more often!

Actually, as an happy Arquero user, it doesn't bother me too much to use a more verbose syntax or new methods like the one you suggest.

But as a teacher, i really want non JS specialists (and R users) to be able to use Arquero in the most simple and intuitive way, this is why i am a bit of a pain on these topics :)

from arquero.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.