Repository for Petra's work at ampli Jan-Feb 2019
Petra Lamborn dd218c8faf Several fixes for python scripts 5 yıl önce
R Fix some stuff with the shiny app so that it actually works 5 yıl önce
img Several fixes for python scripts 5 yıl önce
py Several fixes for python scripts 5 yıl önce
shiny Fix some stuff with the shiny app so that it actually works 5 yıl önce
sql Start writing readme 5 yıl önce
.gitignore Save an rds file of all models 5 yıl önce
README.md Further readme 5 yıl önce
notes.md Add and reorganise notes 5 yıl önce
requirements.txt Update requirements 5 yıl önce

README.md

ampli

Repository for Petra’s work at ampli Jan-Feb 2019

What isn’t in this repository

This repository does not contain with it downloaded data (for confidentiality and size reasons), the fitted models (similar issues), or the configuration file for downloading from the database (which contains a password). Recreate an empty data/ directory and model/. The configuration file is at py/database.ini and looks like:

[postgresql]
host=<Hname>
database=<dbname>
user=<Username>
password=<Password>

This file is based on an example from the postgresSQL website. Replace <Username> and <Password> with valid credentials.

SQL

I’ve included a bunch of annotated SQL queries in sql/queries.pgsql and sql/weather.pgsql. The latter file is specifically about the weather dataset; the former is more general. Some of the queries are copied into the py/util.py file, but changing these two files will do nothing on their own.

Python

requirements.txt contains the python packages required to set up a virtual environment with virtualenv -p /usr/bin/python3 venv and pip install -r requirements.txt. Notably these are:

  • numpy
  • pandas
  • pkg-resources
  • psycopg2-binary
  • pyparsing
  • python-dateutil
  • pytz
  • scipy
  • seaborn
  • statsmodels