首页
科技
登录
6mi
u
盘
搜
搜 索
科技
数据可视化之matplotlib实战:plt.title()函数 添加图形内容的标题
数据可视化之matplotlib实战:plt.title()函数 添加图形内容的标题
科技
2022-07-10
212
import
matplotlib
.
pyplot
as
plt
import
numpy
as
np x
=
np
.
linspace
(
0.05
,
10
,
1000
)
y
=
np
.
sin
(
x
)
plt
.
plot
(
x
,
y
,
ls
=
"-."
,
lw
=
2
,
c
=
"c"
,
label
=
"plot figure"
)
plt
.
legend
(
)
plt
.
title
(
"y=sin(x)"
)
plt
.
show
(
)
转载请注明原文地址:https://blackberry.8miu.com/read-164.html
最新回复
(
0
)