3. Packages and applications¶
This part of the Scipy lecture notes is dedicated to various scientific packages useful for extended needs.
- 3.1. Statistics in Python
- 3.1.1. Data representation and interaction
- 3.1.2. Hypothesis testing: comparing two groups
- 3.1.3. Linear models, multiple factors, and analysis of variance
- 3.1.4. More visualization: seaborn for statistical exploration
- 3.1.5. Testing for interactions
- 3.1.6. Full code for the figures
- 3.1.7. Solutions to this chapter’s exercises
- 3.2. Sympy : Symbolic Mathematics in Python
- 3.3. Scikit-image: image processing
- 3.3.1. Introduction and concepts
- 3.3.2. Input/output, data types and colorspaces
- 3.3.3. Image preprocessing / enhancement
- 3.3.4. Image segmentation
- 3.3.5. Measuring regions’ properties
- 3.3.6. Data visualization and interaction
- 3.3.7. Feature extraction for computer vision
- 3.3.8. Full code examples
- 3.3.9. Examples for the scikit-image chapter
- 3.4. Traits: building interactive dialogs
- 3.5. 3D plotting with Mayavi
- 3.6. scikit-learn: machine learning in Python
- 3.6.1. Introduction: problem settings
- 3.6.2. Basic principles of machine learning with scikit-learn
- 3.6.3. Supervised Learning: Classification of Handwritten Digits
- 3.6.4. Supervised Learning: Regression of Housing Data
- 3.6.5. Measuring prediction performance
- 3.6.6. Unsupervised Learning: Dimensionality Reduction and Visualization
- 3.6.7. The eigenfaces example: chaining PCA and SVMs
- 3.6.8. Parameter selection, Validation, and Testing
- 3.6.9. Examples for the scikit-learn chapter