python直方图与x轴对应不起来_python实现直方图运行结果不正确

RT,运行结果总是error,代码在下面。如果有大神能够给我逐行写一下注释就更好了~#-*-coding:utf-8-*-importsysimportnumpyasnpimportmatplotlib.pyplotaspltdefget_data():#exampled...

RT,运行结果总是error,代码在下面。如果有大神能够给我逐行写一下注释就更好了~

#-*- coding:utf-8 -*-

import sys

import numpy as np

import matplotlib.pyplot as plt

def get_data():

# example data

mu = 100 # mean of distribution

sigma = 15 # standard deviation of distribution

x = mu + sigma * np.random.randn(10000)

return x

#you can write your code here

def draw(IMG_PATH):

#get input data

x = get_data()

print 'data is : '+str(x)

# the histogram of the data

plt.hist(x, bins=50, color='g', alpha=0.5)

#show image

plt.savefig(IMG_PATH)

#the code should not be changed

if __name__ == '__main__':

if len(sys.argv)==1:

print 'error'

else:

#the path of image to show

IMG_PATH = sys.argv[1]+'fig.jpg'

draw(IMG_PATH)

补充:用eclipse来运行程序时会有小红叉,在x = mu + sigma * np.random.randn(10000)这一行,报错显示:Undefined variable from import: random我就看不懂了-_-||

展开

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值