You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project data table rounds up hours while the user data table has two decimal points for hours. In analytics.py, we do .applymap("{:.0f}" when perhaps it should be :.2f. This leads to inconsistency and confusion when looking at individual user hours.
The project data table rounds up hours while the user data table has two decimal points for hours. In analytics.py, we do
.applymap("{:.0f}"
when perhaps it should be:.2f
. This leads to inconsistency and confusion when looking at individual user hours.Example: https://tock.18f.gov/projects/1909/ rounds up to 10 hours (first column, second row) while the actual user has 9.5 hours.
The text was updated successfully, but these errors were encountered: