python绘制折线图(多条)

# encoding=utf-8
from matplotlib import pyplot
import matplotlib.pyplot as plt

names = range(8,21)
names = [str(x) for x in list(names)]

x = range(len(names))
y_train = [0.840,0.839,0.834,0.832,0.824,0.831,0.823,0.817,0.814,0.812,0.812,0.807,0.805]
y_test  = [0.838,0.840,0.840,0.834,0.828,0.814,0.812,0.822,0.818,0.815,0.807,0.801,0.796]
#plt.plot(x, y, 'ro-')
#plt.plot(x, y1, 'bo-')
#pl.xlim(-1, 11)  # 限定横轴的范围
#pl.ylim(-1, 110)  # 限定纵轴的范围


plt.plot(x, y_train, marker='o', mec='r', mfc='w',label='uniprot90_train')
plt.plot(x, y_test, marker='*', ms=10,label='uniprot90_test')
plt.legend()  # 让图例生效
plt.xticks(x, names, rotation=1)

plt.margins(0)
plt.subplots_adjust(bottom=0.10)
plt.xlabel('the length') #X轴标签
plt.ylabel("f1") #Y轴标签
pyplot.yticks([0.750,0.800,0.850])
#plt.title("A simple plot") #标题
plt.savefig('D:\\f1.jpg',dpi = 900)

结果展示:

                                                    

Python 编程语言提供了许多方法来绘制折线图。以下是一些绘制多条折线图的常见方法: 1. 使用 Matplotlib 库:Matplotlib 是 Python 中最常用的绘图库之一。可以使用它的 `plot()` 函数来绘制折线图。要绘制多条折线图,只需在 `plot()` 函数中传入多个 x 和 y 值列表即可。例如: ```python import matplotlib.pyplot as plt x1 = [1, 2, 3, 4, 5] y1 = [2, 3, 5, 4, 6] x2 = [1, 2, 3, 4, 5] y2 = [1, 4, 2, 3, 5] plt.plot(x1, y1) plt.plot(x2, y2) plt.show() ``` 2. 使用 Seaborn 库:Seaborn 是一个基于 Matplotlib 的高级绘图库。它提供了许多内置的绘图函数,其中包括 `lineplot()` 函数,可以用来绘制折线图。要绘制多条折线图,只需传入不同的数据集即可。例如: ```python import seaborn as sns import pandas as pd df = pd.DataFrame({'x': [1, 2, 3, 4, 5], 'y1': [2, 3, 5, 4, 6], 'y2': [1, 4, 2, 3, 5]}) sns.lineplot(x='x', y='y1', data=df) sns.lineplot(x='x', y='y2', data=df) plt.show() ``` 3. 使用 Plotly 库:Plotly 是一款交互式可视化库,支持绘制多种类型的图表,包括折线图。要绘制多条折线图,可以使用 `Scatter()` 函数并在 `mode` 参数中设置为 `'lines'` 或 `'lines+markers'`。例如: ```python import plotly.graph_objs as go x = [1, 2, 3, 4, 5] trace1 = go.Scatter(x=x, y=[2, 3, 5, 4, 6], mode='lines', name='Line 1') trace2 = go.Scatter(x=x, y=[1, 4, 2, 3, 5], mode='lines+markers', name='Line 2') data = [trace1, trace2] fig = go.Figure(data) fig.show() ``` 这些都是绘制多条折线图的常用方法,你可以根据自己的需求选择其中的一种。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值