Browse Source

Further readme

Petra Lamborn 5 years ago
parent
commit
1f8ec45d0a
1 changed files with 15 additions and 0 deletions
  1. 15
    0
      README.md

+ 15
- 0
README.md View File

@@ -20,3 +20,18 @@ This file is based on an example from [the postgresSQL website](http://www.postg
20 20
 
21 21
 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.
22 22
 
23
+## Python
24
+
25
+`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:
26
+
27
+
28
+* numpy
29
+* pandas
30
+* pkg-resources
31
+* psycopg2-binary
32
+* pyparsing
33
+* python-dateutil
34
+* pytz
35
+* scipy
36
+* seaborn
37
+* statsmodels