将字符串转为dataframe
时间: 2023-11-27 07:48:27 浏览: 126
DataFrame:通过SparkSql将scala类转为DataFrame的方法
以下是将字符串转换为DataFrame的Python代码示例:
```python
import io
import pandas as pd
# 定义字符串
s = '''id height weight score
0 174 55 90
1 152 49 91
2 180 65 82
3 163 61 93
4 192 75 84
5 155 42 75
6 164 50 76'''
# 将字符串转换为DataFrame
df = pd.read_csv(io.StringIO(s), sep='\s+')
# 输出DataFrame
print(df)
```
输出结果为:
```
id height weight score
0 0 174 55 90
1 1 152 49 91
2 2 180 65 82
3 3 163 61 93
4 4 192 75 84
5 5 155 42 75
6 6 164 50 76
```
阅读全文