为什么用python画图_怎么用python绘图

展开全部

你可以使用numpy和matplotlab这两个库来2113实现的你功能。

你的图可以参考5261:import matplotlib

from numpy.random import randn

import matplotlib.pyplot as plt

from matplotlib.ticker import FuncFormatter

def to_percent(y, position):

# Ignore the passed in position. This has the effect of scaling the default

# tick locations.

s = str(100 * y)

# The percent symbol needs escaping in latex

if matplotlib.rcParams['text.usetex'] == True:

return s + r'$\%$'

else:

return s + '%'

x = randn(5000)

# Make a normed histogram. It'll be multiplied by 100 later.

plt.hist(x, bins=50, normed=True)

# Create the formatter using the function to_percent. This multiplies all the

# default labels by 100, making them all percentages

formatter = FuncFormatter(to_percent)

# Set the formatter

plt.gca().yaxis.set_major_formatter(formatter)

plt.show()

resize,m_lfit,w_600,h_800,limit_1

最主要的就是x轴和y轴的处4102理,我按照1653对数算了一下你提供的数据,好像和这个图效果不一样。

如果解决了您的问题请采纳!

如果未解决请继续追问

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值