Skip to content

Commit 83fd445

Browse files
committed
heatmap code + gitignore
1 parent 250fc51 commit 83fd445

File tree

2 files changed

+170
-0
lines changed

2 files changed

+170
-0
lines changed

.gitignore

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Byte-compiled files
2+
*.pyc
3+
*.pyo
4+
*.pyd
5+
__pycache__/
6+
7+
# Distribution and packaging
8+
.Python
9+
env/
10+
environment/
11+
environment/*
12+
lib/
13+
bin/
14+
venv/
15+
ENV/
16+
env.bak/
17+
venv.bak/
18+
*.egg
19+
*.egg-info/
20+
dist/
21+
build/
22+
*.whl
23+
24+
# PyInstaller
25+
# Usually these files are written by a python script from a template
26+
*.manifest
27+
*.spec
28+
29+
# Installer logs
30+
pip-log.txt
31+
pip-delete-this-directory.txt
32+
33+
# Unit test / coverage reports
34+
htmlcov/
35+
.tox/
36+
.nox/
37+
.coverage
38+
*.cover
39+
*.py,cover
40+
.cache
41+
nosetests.xml
42+
coverage.xml
43+
*.log
44+
45+
# Jupyter Notebook
46+
.ipynb_checkpoints
47+
48+
# Pytest cache
49+
.pytest_cache/
50+
51+
# Django stuff:
52+
*.log
53+
local_settings.py
54+
db.sqlite3
55+
db.sqlite3-journal
56+
57+
# Flask stuff:
58+
instance/
59+
.webassets-cache
60+
61+
# Scrapy stuff:
62+
.scrapy
63+
64+
# Sphinx documentation
65+
docs/_build/
66+
67+
# mypy
68+
.mypy_cache/
69+
.dmypy.json
70+
dmypy.json
71+
72+
# Pyre type checker
73+
.pyre/
74+
75+
# Cython debug symbols
76+
cython_debug/
77+
78+
# IDE-specific files
79+
.idea/
80+
.vscode/
81+
*.sublime-project
82+
*.sublime-workspace
83+
84+
# MacOS files
85+
.DS_Store
86+
87+
# Windows files
88+
Thumbs.db
89+
ehthumbs.db
90+
91+
# Other
92+
*.env
93+
*.env.*
94+
.envrc

notebook/heatmap.ipynb

Lines changed: 76 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)