Document the lines i always use to test where time got rolled into
This commit is contained in:
parent
b9de1004df
commit
b83e8d9f88
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue