From b83e8d9f883932ecccfc52f85f0cc1815585b97a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Tue, 24 Dec 2024 20:16:10 -0500 Subject: [PATCH] Document the lines i always use to test where time got rolled into --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index cbcf67f..0372b47 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,14 @@ tl.groupby("project").agg({"time": "sum"})["time"]/60 And yeah you can just sort of tack on the column you want to mess with and do an operation like that! +##### List tasks for each CSV that will be made + +```python +hrvst.groupby("project").agg({"time": "sum"})["time"]/60 +other.groupby("project").agg({"time": "sum"})["time"]/60 +unknown.groupby("project").agg({"time": "sum"})["time"]/60 +``` + ##### List tasks that had no properly defined project ```python