- 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.
- 計算機網絡
- Learn Blockchain Programming with JavaScript
- 程序設計與實踐(VB.NET)
- Rake Task Management Essentials
- Swift 3 New Features
- JSP開發案例教程
- ASP.NET Core 2 Fundamentals
- Android開發三劍客:UML、模式與測試
- C語言程序設計簡明教程:Qt實戰
- C++ System Programming Cookbook
- Visual Basic程序設計全程指南
- 玩轉.NET Micro Framework移植:基于STM32F10x處理器
- INSTANT JQuery Flot Visual Data Analysis
- Learning Concurrency in Python
- Python 3快速入門與實戰