Note: Please fork the current Udacity repository so that you will have a remote repository in your Github account. Clone the remote repository to your local machine. Later, as a part of the project "Post your Work on Github", you will push your proposed changes to the remote repository in your Github account.
Tuesday, December 21st, 2021.
Bikeshare Data Analysis for Chicago, New York City, and Washington.
This project accept inputs of city, month, and day of the week and output basic statistical information about the bikeshare data based on the input you provide:
INPUT
city - This accepts chicago, new york city, washington, or all to determine which city csv file will be loaded
month - This accepts input of January through to June or all to determine which month will be used in filtering a particular city bikeshare data.
day - This accept input of Monday through to Sunday or all to extract bikeshare information only that day.
OUTPUT
Statistical information on time, bikeshare station, trip duration, and users is display based on the input you provided. Also, the program also gives you opportunity to view the whole data set available, five(5) rows at a time.
List of files used
1. bikeshare.py
2. csv-file/chicago.csv
3. csv-files/new_york_city.csv
4. csv-files/washington.csv
List of helpful sites
[https://www.geeksforgeeks.org/divmod-python-application/][1]
[https://datascientyst.com/convert-datetime-day-of-week-name-number-in-pandas/][2]
[https://stackoverflow.com/questions/37625334/python-pandas-convert-month-int-to-month-name][3]