h2oai / datatable

A Python package for manipulating 2-dimensional tabular data structures

Home Page:https://datatable.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Question] How do I work with a column with multiple mode?

plusmid opened this issue · comments

For example, a column records each of [0,1,2,3] for 3000 counts and records [4,5,6] for (199,299,399) counts. How should I get a list of mode numbers like [0,1,2,3]? It only returns 0 when I run clolumn.mode() in this case.

Thanks in advance!