# Training notes
### Installing python
* [Anaconda](https://www.anaconda.com/download#Downloads) - a manager for python
### Reference material for learning coding
* [JGI training page](https://bristol-training.github.io/)
* [Introduction to Python](https://bristol-training.github.io/intro-python-1/)
* [Introduction to Python 2](https://bristol-training.github.io/intermediate-python/)
* [Introduction to Data Analysis](https://bristol-training.github.io/introduction-to-data-analysis-in-python/pages/01%20Pandas.html)
* [Matplotlib](https://www.w3schools.com/python/matplotlib_scatter.asp)
### Lexedata Notes
* In the example in the [documentation for lexedata](https://lexedata.readthedocs.io/en/latest/tour.html):
* There was a bug in one line. Instead of
* `python -m lexedata.edit.add_table ParameterTable --but-not-column ColumnSpec`
* I had to write:
* `python -m lexedata.edit.add_table ParameterTable`
* it worked... (but did it do the right thing?)
* DJL: When I attempted to follow the instructions, my "cognates" table was empty. Has anyone managed to get this to work?