pandas Dataframe行列读取的实例

时间:2022-10-06 00:29:47

如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import matplotlib.pyplot as plt
import tkinter
import numpy as np
import pandas as pd
from pandas import Series,DataFrame
data = {‘a':[1,2,3],
‘c':[4,5,6],
‘b':[7,8,9]
}
frame = DataFrame(data,index=[‘one','two','three'])
print(frame)
print(frame.iloc[2])
print(frame.loc[‘three'])
print(frame.b)

以上这篇pandas Dataframe行列读取的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/cuihuijun1hao/article/details/78155266