From 1e7cb38e64aa5695b02982323e1d587deb8bc2fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Kolding-S=C3=B8rensen?= Date: Sat, 5 Apr 2014 21:40:29 +0200 Subject: [PATCH] Add misc section and two books --- docs/intro/learning.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/intro/learning.rst b/docs/intro/learning.rst index 4b2dd8b5b..9a1a3b411 100644 --- a/docs/intro/learning.rst +++ b/docs/intro/learning.rst @@ -174,6 +174,26 @@ emphasis on numerical methods and how to implement them in Python. `Numerical Methods in Engineering with Python `_ +Miscellaneous topics +-------------------- + +Problem Solving with Algorithms and Data Structures +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Problem Solving with Algorithms and Data Structures covers a range of data structures and +algorithms. All concepts are illustrated with Python code along with interactive samples +that can be run directly in the browser. + + `Problem Solving with Algorithms and Data Structures + `_ + +Programming Collective Intelligence +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Programming Collective Intelligence introduces a wide array of basic machine learning and +data mining methods. The exposition is not very mathematically formal, but rather focuses +on explaining the underlying intuition and shows how to implement the algorithms in Python. + + `Programming Collective Intelligence `_ + References ----------