Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.07 KB

File metadata and controls

34 lines (25 loc) · 1.07 KB

This repository contains interactive Dash applications built using Plotly Dash in Python. These apps are designed to visualize and analyze data with rich interactive features. Each app follows a modular structure with separate files for layout, callbacks, and data processing.

📁 Folder Structure

Each app folder follows this structure:

app_name/
│
├── app.py               # Main application
├── data_processing.py   # Data processing functions
├── callbacks.py         # Callbacks for interactivity
└── layout.py            # Layout design

🚀 Getting Started

Prerequisites

To run these Dash apps, you'll need to install the following Python packages:

  • Dash: pip install dash
  • Plotly: pip install plotly

For additional dependencies, please refer to individual app folders.

Running an App

  1. Navigate to the desired app directory:
    cd app1  # Replace with the folder of the app you want to run
    
  2. Run the app:
    python app.py 
    
  3. Open your browser and visit http://127.0.0.1:8050/ to view the app.