diff --git a/README.md b/README.md
index 6eb426b..bbf6090 100644
--- a/README.md
+++ b/README.md
@@ -14,13 +14,13 @@ This repository contains example python code for the k-means-u and k-mean-u* alg
* continue in the browser window which opens (jupyter manual: http://jupyter-notebook.readthedocs.io/en/latest/)
## jupyter notebooks:
-* algo-pure.ipynb
+* [algo-pure.ipynb](https://github.com/gittar/k-means-u-star/blob/master/notebooks/algo-pure.ipynb)
a bare-bones implementation meant for easy understanding of the algorithms
-* simu-detail.ipynb
+* [simu-detail.ipynb](https://github.com/gittar/k-means-u-star/blob/master/notebooks/simu-detail.ipynb)
detailed simulations and graphics to illustrate the way the algorithms work, uses kmeansu.py
-* simu-bulk.ipynb
+* [simu-bulk.ipynb](https://github.com/gittar/k-means-u-star/blob/master/notebooks/simu-bulk.ipynb)
systematic simulations with various data sets to compare k-means-++, k-means-u and k-means-u*, uses kmeansu.py
-* dataset_class.ipynb
+* [dataset_class.ipynb](https://github.com/gittar/k-means-u-star/blob/master/notebooks/dataset_class.ipynb)
examples for using the data generator
## python files: