-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextractTime.py
65 lines (58 loc) · 2.57 KB
/
extractTime.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#/usr/env/python
import pandas as pd
import numpy as np
from pandas import ExcelWriter
from pandas import ExcelFile
"""
Export the TimeSpent2022 Google Sheet to a csv file.
The exported cvs file has the ProjectID as an integer.
On the other hand, the exported xlsx leads to the ProjectIDs being exported as reals.
"""
df = pd.read_csv('/Users/blaine/6003TimeTracking/data/TimeSpent-Oct2022.csv')
# The next command converts the ProjectID to an integer.
df['ProjectID'] = df['ProjectID'].dropna().astype(int)
# Extract the time spent on all COBRE related projects
COBREadmin = df.loc[df['ProjectID'].isin([211,4514,
7551,
7552,
7553,
7554,
7561,
7571,
7601,
7602,
7603,
7630,
7631,
7632,
7633,
7634,
7635,
7636,
7637,
7638,
7639,
7640,
7641,
7642,
7643,
7644,
7645,
7646,
7647,
7648,
7648,
7649,
7651,
7652,
7653,
7801,
7654])]
# Print total effort
print(COBREadmin['DecimalTime'].sum())
# Now write out an Excel sheet.
# I sort by Project ID and get the project subtotals in Excel.
# I need to add more pandas code to automate this step.
writer = ExcelWriter('COBREoctober2022.xlsx')
COBREadmin.to_excel(writer,'Sheet1',index=False)
writer.save()