From 466a121005a455d3bef89d3ea035e4d108f4020c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sat, 29 May 2021 04:51:04 -0400 Subject: [PATCH] Add another useful python interpreter statement for playing with data --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index cff9e72..fff99bc 100644 --- a/README.md +++ b/README.md @@ -78,3 +78,9 @@ 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 that had no properly defined project + +```python +tl[tl.project == ""] +```