yjsl = [57000, 21850, 22400, 33040, 9875, 170840, 132750, 71400, 30000, 12500, 1500, 35100, 36000, 14000, 10000]将该数据转变为dataframe
时间: 2024-09-06 18:07:20 浏览: 59
SQL嵌套查询总结
5星 · 资源好评率100%
要将给定的`yjsl`列表数据转变为DataFrame,你可以使用Python的pandas库。首先,确保已经安装了pandas,如果没有,可以通过pip安装:
```bash
pip install pandas
```
然后,可以按照以下步骤创建DataFrame:
```python
import pandas as pd
# 列表数据
yjsl = [57000, 21850, 22400, 33040, 9875, 170840, 132750, 71400, 30000, 12500, 1500, 35100, 36000, 14000, 10000]
# 创建一个简单的数据结构,如dict,其中键是列名,值是列表
data = {'TYPE': range(1, len(yjsl) + 1), 'yjsl': yjsl}
# 使用pd.DataFrame构造DataFrame
df = pd.DataFrame(data)
# 显示转换后的DataFrame
print(df)
```
这将创建一个包含`TYPE`列和`yjsl`列的DataFrame,其中`TYPE`列是序列索引。
阅读全文