buschbirk / intro-data-capstone-musclehub

0 stars 0 forks source link

Add spaces around operations for increased readability #8

Closed hillarygreenlerman closed 6 years ago

hillarygreenlerman commented 6 years ago

https://github.com/buschbirk/intro-data-capstone-musclehub/blob/66253a292dbe1c2e164ec5b57ff40c1a6da26ecf/Final%20Analysis/musclehub.py#L253

This one is super nitpicky:

Generally, we put spaces around operations like * or / to increase readability:

app_pivot['Percent with Application'] = 100 * app_pivot['Application'] / app_pivot['No Application']
buschbirk commented 6 years ago

That is definitely easier on the eyes. :)