Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Analysis Results #36

Open
wants to merge 39 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
70979df
Adding Cost Impact
styoung3 Jan 11, 2022
f6b8f46
Create tests.py
styoung3 Jan 11, 2022
840ff24
Added Cost and Time Calculations by Mode
styoung3 Jan 13, 2022
1fa759a
Same as before?
styoung3 Jan 13, 2022
18d4124
Added time_impact and cost_impact functions.
styoung3 Jan 13, 2022
e9e1dfd
cost_time.csv updates
styoung3 Jan 13, 2022
dca163d
Debugging
styoung3 Jan 13, 2022
545fdc0
debugging
styoung3 Jan 13, 2022
636f0de
debugging
styoung3 Jan 13, 2022
6ecfa26
?
styoung3 Jan 13, 2022
fc96fed
blah
styoung3 Jan 13, 2022
406fbe5
Mimicking Energy Calculations
styoung3 Jan 13, 2022
5d8fdc1
Added energy_intensity() unit_test
styoung3 Jan 13, 2022
55cd7cd
Unit Test Energy Impact
styoung3 Jan 18, 2022
abe79ac
Merge branch 'stanley'
styoung3 Jan 18, 2022
ae12f9d
.DS_Store in aux_files
styoung3 Jan 18, 2022
753e8d1
Squashed commit of the following:
styoung3 Jan 21, 2022
e3c264e
Add Unit Tests (again?)
styoung3 Jan 21, 2022
2600f92
Merge branch 'e-mission:main' into main
styoung3 Jan 21, 2022
a269ee2
Remove .DS_Store (again)
styoung3 Jan 21, 2022
a67ac28
Merge branch 'main' of https://github.com/styoung3/em-public-dashboard
styoung3 Jan 21, 2022
f118ab3
Function + constants + load
styoung3 Jan 21, 2022
01f583d
unit_conversions + duration
styoung3 Jan 21, 2022
c37fd3d
Convert duration to hours
styoung3 Jan 21, 2022
afe129c
Discovered pre-existing duration feature
styoung3 Jan 21, 2022
45f568b
Calculate Average Speed
styoung3 Jan 21, 2022
f951740
Made Some Changes
styoung3 Jan 24, 2022
c825124
Documentation Minor Updates
styoung3 Jan 24, 2022
b42502e
Fixed .gitignore Conflict
styoung3 Jan 25, 2022
4efd130
Trashed time.csv
styoung3 Jan 25, 2022
53450cd
Reformat calc_avg_dura
styoung3 Jan 25, 2022
4c7b3b4
Generalizing function (maybe?)
styoung3 Jan 25, 2022
3cb697b
Merge branch 'main' into generalize_functions
styoung3 Jan 26, 2022
0a76b51
Generalized first functions
styoung3 Jan 26, 2022
ca63e31
Change eng_feat to feat_eng
styoung3 Jan 27, 2022
df70624
Tested General Function
styoung3 Jan 27, 2022
1d0b58b
Add tests cost and time
styoung3 Jan 27, 2022
0fcd995
Applied feat_eng
styoung3 Jan 27, 2022
8c19cbf
Added Time and Cost Impact Graphs
styoung3 Jan 27, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

# MacOS file system
*.DS_Store

# Custom excludes
viz_scripts/conf
plots
Expand Down
Binary file modified viz_scripts/.DS_Store
Binary file not shown.
15 changes: 15 additions & 0 deletions viz_scripts/auxiliary_files/cost.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mode,C($/PMT),($)/trip
"Car, drove alone",0.55,0
"Car, with others",0.275,0
Taxi/Uber/Lyft,2.5,0
Bus,0.855,0
Free Shuttle,0,0
Train,0.855,0
Scooter share,0.15,1
Pilot ebike,0,0
Bikeshare,0.09,0
Walk,0,0
Skate board,0,0
Regular Bike,0,0
Not a Trip,0,0
No Travel,0,0
Loading