Environmental Practices, Environmental Performance & Lean
hpm/
│
├── .venv/ # Virtual environment folder
│
├── notebooks/ # Jupyter notebooks
│ ├── exploratory/ # Initial explorations and analyses
│ └── final/ # Final, cleaned-up notebooks
│
├── data/ # All data files
│ ├── raw/ # Unprocessed data
│ ├── processed/ # Cleaned and transformed data
│
├── output/ # Any output files, charts, tables, etc.
│
├── scripts/ # Python or other scripts
│
└── reports/ # Generated analysis as HTML, PDF, LaTeX, etc.
└── figures/ # Generated graphics and figures used in the report
- Clone the repository:
git clone git@github.com:johnmalcolm/hpm.git
- Navigate to the project directory:
cd hpm
- Create a virtual environment:
python3 -m venv .venv
- Activate the virtual environment:
- On macOS and Linux:
source .venv/bin/activate
- On Windows:
.\.venv\Scripts\activate
- On macOS and Linux:
- Install the required packages:
pip install -r requirements.txt
-
Ensure that you have Visual Studio Code (VSCode) installed.
-
Ensure the VSCode Python extension is installed.
-
Open the project directory in VSCode.
-
Open the Command Palette (
Ctrl+Shift+P
orCmd+Shift+P
on macOS) and type "Python: Select Interpreter". Choose the interpreter that corresponds to the virtual environment you created (.venv
). -
Navigate to the
notebooks/
directory in the VSCode explorer to open and edit the Jupyter notebooks. You can run cells directly in VSCode.
- Raw data files are stored in the
data/raw/
directory. - Processed data files are stored in the
data/processed/
directory.