Skip to content

hanynathan/bikeshare

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bikeshare

solution for Udacity Data Analysis Professional Nanodegree Program (project #1)

suggestions

Data structures and algorithms on python.

  1. Think Python
  2. Problem Solving with Algorithms and Data Structures using Python
  3. Data Structures and Algorithms in Python
  4. this one is my favorite, it is about solving hard mathematical problems via programming languages. You really need to know how to play with data types : https://projecteuler.net

visualization libraries:

  1. plotly
  2. streamlit
  3. tutorial about classes:

When I run the code, columns are collapsed, and only some of them are shown. You can prevent this situation by adding this to your code:

  1. pd.set_option('display.max_columns',200)
  2. another method
from tabulate import tabulate
while True:
    display_data = input('\nWould you like to see 5 lines of raw data? Enter yes or no.\n')
    if display_data.lower() != 'yes':
        break
    print(tabulate(df_default.iloc[np.arange(0+i,5+i)], headers ="keys"))
    i+=5

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published