- Mastering Machine Learning with scikit-learn(Second Edition)
- Gavin Hackeling
- 174字
- 2021-07-02 19:01:11
Installing pandas, Pillow, NLTK, and matplotlib
pandas is an open source library that provides data structures and analysis tools for Python. pandas is a powerful library, and several books describe how to use pandas for data analysis. We will use a few of pandas's convenient tools for importing data and calculating summary statistics. Pillow is a fork of the Python Imaging Library, which provides a variety of image processing features. NLTK is a library for working with human language. As for scikit-learn, pip is the preferred installation method for pandas, Pillow, and NLTK. Execute the following command in a terminal emulator:
$ pip install pandas pillow nltk
Matplotlib is a library for easily creating plots, histograms, and other charts with Python. We will use it to visualize training data and models. Matplotlib has several dependencies. Like pandas, matplotlib depends on NumPy, which should already be installed. On Ubuntu 16.04, matplotlib and its dependencies can be installed with:
$ sudo apt install python-matplotlib
Binaries for Mac OS and Windows 10 can be downloaded from http://matplotlib.org/downloads.html.
- C語言程序設計案例教程
- Mastering Concurrency in Go
- ASP.NET Core Essentials
- Implementing Cisco Networking Solutions
- Python完全自學教程
- Go并發編程實戰
- R Data Analysis Cookbook(Second Edition)
- Java EE 8 Application Development
- HTML5秘籍(第2版)
- Natural Language Processing with Java and LingPipe Cookbook
- Android傳感器開發與智能設備案例實戰
- Mastering Python Design Patterns
- 代替VBA!用Python輕松實現Excel編程
- C++ Application Development with Code:Blocks
- Xamarin Blueprints