Add another useful python interpreter statement for playing with data

This commit is contained in:
benjamin melançon 2021-05-29 04:51:04 -04:00
parent 8002ddedea
commit 466a121005

View file

@ -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 == ""]
```