We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zulip discussion: https://clojurians.zulipchat.com/#narrow/stream/151763-beginners/topic/datetime.20problem.20in.20tablecloth.20group-by
Here is a self-contained example. Create the file d.csv as follows:
d.csv
date,x 2021-01-01,1 2021-01-02,2
Then:
(require '[tablecloth.api :as tc]) (-> "d.csv" (tc/dataset {:key-fn keyword}) (tc/group-by :date)) _unnamed [2 3]: | :name | :group-id | :data | |------:|----------:|---------------------| | 18628 | 0 | Group: 18628 [1 2]: | | 18629 | 1 | Group: 18629 [1 2]: |
The group names are turned into numbers.
The text was updated successfully, but these errors were encountered:
daslu
No branches or pull requests
Zulip discussion:
https://clojurians.zulipchat.com/#narrow/stream/151763-beginners/topic/datetime.20problem.20in.20tablecloth.20group-by
Here is a self-contained example.
Create the file
d.csv
as follows:Then:
The group names are turned into numbers.
The text was updated successfully, but these errors were encountered: