Post Image

Bikeshare Data

| FWD Udacity

This project focuses on pandas library usage and simple statistics methods to perform descriptive analysis on the bikeshare data from three major U.S. cities - Chicago, Washington, and New York City - to display information such as most popular days or most common stations.

Running the program

You can input 'python bikeshare.py' on your terminal to run this program. I use Anaconda's command prompt on a Windows 10 machine.

Program Details

The program takes user input for the city (e.g. Chicago), month for which the user wants to view data (e.g. January; also includes an 'all' option), and day for which the user wants to view data (e.g. Monday; also includes an 'all' option).

Upon receiving the user input, it goes ahead and asks the user if they want to view the raw data (5 rows of data initially) or not. Following the input received, the program prints the following details:

  • Most popular month

  • Most popular day

  • Most popular hour

  • Most popular start station

  • Most popular end station

  • Most popular combination of start and end stations

  • Total trip duration

  • Average trip duration

  • Types of users by number

  • Types of users by gender (if available)

  • The oldest user (if available)

  • The youngest user (if available)

  • The most common birth year amongst users (if available)

Finally, the user is prompted with the choice of restarting the program or not.

https://github.com/fagrahmed12/bike-Share/tree/master

Read next

Diamond Price Prediction

Using Data Science with Machine Learning to detect the price of diamonds using significant features given by the most linked features that are taken into consideration when evaluating price by diamond sellers.

Data Science Job Salaries

This notebook is a study on the Data Science Job Salaries dataset, containing information on salary, company size and location, remote work, employee location, and many other related to people working in the Data Science field throughout the world.

Automated EDA

Python Script that would take any type of data as an input whether (.csv or .xlsx) that hold data with different type of errors that need to be corrected  first then return an automated Exploratory Data Analysis Charts as an output..