Pandas模块——Series和DataFrame详解
程序员文章站
2022-07-02 22:35:07
import pandas as pd1. Pandas模块这里主要讲解两种数据结构:1)Series2)DataFrame2. 解决ModuleNotFoundError: No module named ‘pandas’需要安装pandas模块:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple Pandas3. pd.Series()函数1)pd.Series([list],index=[list])list ,inde...
import pandas as pd
1. Pandas模块
这里主要讲解两种数据结构:
1)Series
2)DataFrame
2. 解决ModuleNotFoundError: No module named ‘pandas’
需要安装pandas模块:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple Pandas
3. pd.Series()函数
1)pd.Series([list],index=[list])
list ,index为可选参数,若不填写则默认为index从0开始
指明index,则:
2) pd.Series(np.arange())
3) pd.Series({dict})
给定行索引:
4. pd.DataFrame()函数
1) DataFrame([data, index, columns, dtype, copy])
其中index和columns代表行和列的索引。
2) pd.DataFrame({dict})
给定列(字典key)和行(index)的索引
3)pd.DataFrame(np.random.randn())
给定列(columns)和行(index)的索引
本文地址:https://blog.csdn.net/weixin_43994864/article/details/110918356
推荐阅读
-
Python代码缩进和测试模块示例详解
-
python pandas库中DataFrame对行和列的操作实例讲解
-
pandas 对series和dataframe进行排序的实例
-
详解Node.js中path模块的resolve()和join()方法的区别
-
python pandas 对series和dataframe的重置索引reindex方法
-
浅谈Series和DataFrame中的sort_index方法
-
Python PyAutoGUI模块控制鼠标和键盘实现自动化任务详解
-
详解angularJs模块ui-router之状态嵌套和视图嵌套
-
AngularJs动态加载模块和依赖注入详解
-
Pandas基础(文件读取与写入、Series和Dataframe、常用基本函数、排序)