This is a Houses Data Science pipeline produced from an analysis you can see as steps in notebooks/
- conda
Run the following to install the project as a python package
pip install houses_pipeline
conda create -f environment.yml
conda activate houses
python setup.py bdist_wheel
./houses_pipeline/fetch/fetch_dataset.sh data/raw
Or simply a one-liner of
kaggle competitions download -c house-prices-advanced-regression-techniques -p data/raw ;
unzip -o data/raw/*.zip -d data/raw/
python houses_pipeline/preprocess data/raw/train.csv data/interim/train.csv
- Not Yet Implemented
- Not Yet Implemented
conda develop .
pytest
python houses_pipeline/preprocess
python houses_pipeline/modelling/train_lasso.py
pip install -e .[dev]