根据数组创建dataframe行索引为one two
时间: 2024-05-10 13:14:44 浏览: 80
python中pandas.DataFrame的简单操作方法(创建、索引、增添与删除)
假设数组为arr,则可以使用pandas库中的DataFrame函数来创建DataFrame,并通过index参数指定行索引为one和two,示例代码如下:
```python
import pandas as pd
arr = [[1, 2, 3], [4, 5, 6]]
df = pd.DataFrame(arr, index=['one', 'two'])
print(df)
```
输出结果为:
```
0 1 2
one 1 2 3
two 4 5 6
```
阅读全文