- Mastering Machine Learning for Penetration Testing
- Chiheb Chebbi
- 107字
- 2021-06-25 21:03:06
pandas
pandas is an open source Python library, known for its high performance; it was developed by Wes McKinney. It quickly manipulates data. That is why it is widely used in many fields in academia and commercial activities. Like the previous packages, it is supported by many operating systems.
To install it on an Ubuntu machine, type the following command:
sudo apt-get install python-pandas

Basically, it manipulates three major data structures - data frames, series, and panels:
>> import pandas as pd
>>>import numpy as np
data = np.array(['p','a','c','k',’t’])
SR = pd.Series(data)
print SR
I resumed all of the previous lines in this screenshot:

推薦閱讀
- Mastering Node.js(Second Edition)
- 物聯網工程規劃技術
- 光網絡評估及案例分析
- Building Django 2.0 Web Applications
- Force.com Development Blueprints
- Hands-On Full Stack Development with Spring Boot 2 and React(Second Edition)
- Learning Karaf Cellar
- 信息通信網絡建設安全管理概要2
- PLC、現場總線及工業網絡實用技術速成
- 物聯網時代
- Socket.IO Real-time Web Application Development
- Yii Application Development Cookbook(Second Edition)
- Building RESTful Web services with Go
- 網絡設計與應用(第2版)
- Selenium WebDriver 3 Practical Guide