构造一个DataFrame命名为df1,要求值从0-15的4行4列数据,行索引为['Ohio','Colorado','Utah','New York'],列索引为['one','two','three','four']
时间: 2023-12-25 13:06:17 浏览: 63
可以使用`pandas`库中的`DataFrame()`方法来构造一个DataFrame,代码如下:
```python
import pandas as pd
# 构造数据
data = [[0, 1, 2, 3],
[4, 5, 6, 7],
[8, 9, 10, 11],
[12, 13, 14, 15]]
# 构造行索引和列索引
index = ['Ohio', 'Colorado', 'Utah', 'New York']
columns = ['one', 'two', 'three', 'four']
# 构造DataFrame
df1 = pd.DataFrame(data, index=index, columns=columns)
# 打印输出
print(df1)
```
输出结果如下:
```
one two three four
Ohio 0 1 2 3
Colorado 4 5 6 7
Utah 8 9 10 11
New York 12 13 14 15
```
通过以上代码,我们成功构造了一个符合要求的DataFrame,并输出了结果。
阅读全文