Add another useful python interpreter statement for playing with data
This commit is contained in:
parent
8002ddedea
commit
466a121005
1 changed files with 6 additions and 0 deletions
|
@ -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 == ""]
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue