/pdsnd_github

GitHub project (Project 3) repository for PDSND

Primary LanguagePython

Date created

Friday, June 21, 2019

Project Title

Explore US Bikeshare Data

Description

In this project, you will use data provided by Motivate, a bike share system provider for many major cities in the United States, to uncover bike share usage patterns. You will compare the system usage between three large cities: Chicago, New York City, and Washington, DC.

Files used

  1. chicago.csv
  2. new_york_city.csv
  3. washington.csv

Datasets

Randomly selected data for the first six months of 2017 are provided for all three cities. All three of the data files contain the same core six (6) columns:

  • Start Time (e.g., 2017-01-01 00:07:57)
  • End Time (e.g., 2017-01-01 00:20:53)
  • Trip Duration (in seconds - e.g., 776)
  • Start Station (e.g., Broadway & Barry Ave)
  • End Station (e.g., Sedgwick St & North Ave)
  • User Type (Subscriber or Customer)

The Chicago and New York City files also have the following two columns:

  • Gender
  • Birth Year

Statistics Computed

You will learn about bike share use in Chicago, New York City, and Washington by computing a variety of descriptive statistics. In this project, you'll write code to provide the following information:

1 Popular times of travel (i.e., occurs most often in the start time)**
  1. most common month
  2. most common day of week
  3. most common hour of day
2 Popular stations and trip**
  1. most common start station
  2. most common end station
  3. most common trip from start to end (i.e., most frequent combination of start station and end station)
3 Trip duration**
  1. total travel time
  2. average travel time
4 User info**
  1. counts of each user type
  2. counts of each gender (only available for NYC and Chicago)
  3. earliest, most recent, most common year of birth (only available for NYC and Chicago)

Credits