Skip to content

DilnaJoseph/capstone_project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

10 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Capstone Project

Dynamic Pricing for Urban Parking Lots

Project Overview

This project implements real-time dynamic pricing models for urban parking lots using streaming data. The goal is to optimize parking lot prices based on occupancy, traffic, queue length, vehicle type, and competitor pricing in nearby lots. The models are designed to adapt prices dynamically to maximize revenue and enhance user experience.

The project includes three pricing models:

  • Model 1: Baseline Linear Model (price based on occupancy)
  • Model 2: Demand-Based Model (adds queue, traffic, vehicle type, and special day effects)
  • Model 3: Competitive Model (adjusts price based on competitor pricing and proximity)

Tech Stack

  • Python โ€“ Main programming language
  • Pathway โ€“ Real-time streaming data processing
  • Pandas & NumPy โ€“ Data manipulation and numerical calculations
  • Bokeh โ€“ Interactive data visualization
  • Mermaid โ€“ Architecture diagram visualization (embedded in README)
  • Git & GitHub โ€“ Version control and code hosting

๐Ÿ“ˆ Pricing Model Visualization

This plot shows real-time pricing behavior of 3 models over a 12-hour period.

Pricing Models Visualization


Architecture Diagram

flowchart TD
    CSV_Data["CSV Dataset"]
    Stream_Processor["Pathway Streaming Processor"]
    Pricing_Models["Pricing Models"]
    Model1["Model 1: Baseline"]
    Model2["Model 2: Demand-Based"]
    Model3["Model 3: Competitive"]
    Visualization["Bokeh Visualization"]
    Output["Output JSON / Dashboard"]

    CSV_Data --> Stream_Processor
    Stream_Processor --> Pricing_Models
    Pricing_Models --> Model1
    Pricing_Models --> Model2
    Pricing_Models --> Model3
    Model1 --> Output
    Model2 --> Output
    Model3 --> Output
    Output --> Visualization
Loading

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published