Glass Identification数据集用python画'RI', 'Na', 'Mg', 'Al', 'Si', 'K', 'Ca', 'Ba', 'Fe'为纵坐标,Type为纵坐标的散点图
时间: 2024-01-16 13:03:42 浏览: 78
基于python的散点图绘制与实现
以下是使用Python绘制Glass Identification数据集的散点图的示例代码:
```python
import pandas as pd
import matplotlib.pyplot as plt
# 读取数据集
data = pd.read_csv('glass.csv')
# 提取需要绘制的数据
x = data['Type']
= data[['RI', 'Na', 'Mg', 'Al', 'Si', 'K', 'Ca', 'Ba', 'Fe']]
# 绘制散点图
plt.scatter(x, y)
# 设置图表标题和坐标轴标签
plt.title("Glass Identification Dataset")
plt.xlabel("Type")
plt.ylabel("RI, Na, Mg, Al, Si, K, Ca, Ba, Fe")
# 显示图表
plt.show()
```
阅读全文