andrei-assa / arctic-analytics-data-validation

0 stars 0 forks source link

Arctic Analytics

Project Structure

.
├── README.md
├── pyvenv.cfg
├── requirements.txt
└── src
    ├── algorithms
    │   ├── __init__.py
    │   └── market_basket_analysis.py
    ├── data
    │   ├── instacart_data_subset.zip
    │   ├── order_products_prior_subset.csv
    │   ├── products.csv
    │   └── products.csv.zip
    ├── streamlit_app
    │   ├── app.py
    │   ├── data.db
    │   ├── test1.csv
    │   ├── test1.py
    │   └── uber_pickups.py
    └── validation
        ├── __init__.py
        ├── tests
        │   ├── __init__.py
        │   ├── test_transformer.py
        │   └── test_validator.py
        ├── transformer
        │   ├── __init__.py
        │   └── transformer.py
        └── validator
            ├── __init__.py
            └── validator.py

Algorithms

Market Basket Analysis

Image

Notes from 7/30 Meeting