系统:Windows 7
语言版本:Anaconda3-4.3.0.1-Windows-x86_64
编辑器:pycharm-community-2016.3.2
pandas:0.19.2
这个系列讲讲...Python的科学计算及可视化
今天讲讲pandas模块
从Dataframe获取特定的行或者列数据,生成一个列表
Part 1:目标
?...import pandas as pd
dict_1 = {"time": ["2019-11-02", "2019-11-03", "2019-11-04", "2019-11-05",..."P3", "P4", "P5", "P6", "P7", "P8"],
"value1": [0.5, 0.8, 1.0, 2, 3, 5, 6, 7]}
df_1 = pd.DataFrame...", list1)
print("time-列,数据类型:", type(list1))
print("pos-列:", list2)
print("value1-列:", list3)
print(