how to use pandas in python

来源:互联网 发布:淘宝用户名被冻结 编辑:程序博客网 时间:2024/05/20 17:23

1.install pandas

pip3 install pandas

it will install numpy as well

2.install scipy(Calculation package)

pip3 install scipy

3.install matplotlib(Visualization Package)

pip3 install matplotlib

this lib is used to plot data

after installing the three package above,you can try the function of pandas.


read this site,you can quickly grasp how to use pandas: 

http://pandas.pydata.org/pandas-docs/stable/10min.html

原创粉丝点击