Skip to content

manug25/UberAnalytics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cab Analytics

Travis Build Status sonar

The purpose of this project is to gather data from online taxi cab and transportation network company, in our case Uber, from various sources, enrich the collected data and deliver it to Data Science team for further analytics.

Technologies used:

  • Programing language: Scala
  • Processing framework: Spark, Spark Streaming
  • Queuing technology: Kafka
  • Database technology: MySQL.

Database tables:

driver (id BIGINT, date_created TIMESTAMP, name CHARACTER VARYING(255))
passenger (id BIGINT, date_created TIMESTAMP, name CHARACTER VARYING(255))
booking ( id BIGINT, date_created TIMESTAMP, id_driver BIGINT, id_passenger BIGINT, rating INT, start_date TIMESTAMP, end_date TIMESTAMP, tour_value BIGINT)

Analysis Performed:

Analysis 01:

Create a report listing the TOP 12 drivers from 2016. Drivers with a high tour value and a good average rating.

Analysis 02:

Show relationships between drivers and passengers. In order to know how successful UBER is at creating a good passenger driver relationship, provide a list of the
TOP 10 strongest relationships between passengers and drivers. This relationship is defined by the number of tours they did together.

Analysis 03:

Show overall performance of the company.
Provide a KPI report containing the yearly figures for bookings, the average driver evaulation and revenue for specified year.

Analysis 05:

Setup your own Kafka Broker locally and publish the results of above analysis to different kafka topics.

About

Spark application to analyze Uber data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages