Document the lines i always use to test where time got rolled into

This commit is contained in:
benjamin melançon 2024-12-24 20:16:10 -05:00
parent b9de1004df
commit b83e8d9f88

View file

@ -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! 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 ##### List tasks that had no properly defined project
```python ```python