python pyplot怎样不重叠
答案:2 悬赏:0 手机版
解决时间 2021-03-10 01:55
- 提问者网友:愿为果
- 2021-03-09 04:39
python pyplot怎样不重叠
最佳答案
- 五星知识达人网友:白昼之月
- 2021-03-09 06:06
1. 在这里,你有一个工作的例子:
import random
import numpy
from matplotlib import pyplot
x = [random.gauss(3,1) for _ in range(400)]
y = [random.gauss(4,2) for _ in range(400)]
bins = numpy.linspace(-10, 10, 100)
pyplot.hist(x, bins, alpha=0.5)
pyplot.hist(y, bins, alpha=0.5)
pyplot.show()
import random
import numpy
from matplotlib import pyplot
x = [random.gauss(3,1) for _ in range(400)]
y = [random.gauss(4,2) for _ in range(400)]
bins = numpy.linspace(-10, 10, 100)
pyplot.hist(x, bins, alpha=0.5)
pyplot.hist(y, bins, alpha=0.5)
pyplot.show()
全部回答
- 1楼网友:低血压的长颈鹿
- 2021-03-09 06:40
我先假设你用的是python(虽然我感觉像是matlab)
import matplotlib.pyplot as plt
plt.plot(x,y,'ro',label="point")
plt.legend()
plt.show()这里legend可以显示图示
如果是matlab 你直接标legend=xxxx就行了 可以查一下用法
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯