python3绘图示例1(基于matplotlib)

Posted 新美好时代

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3绘图示例1(基于matplotlib)相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
# -*- coding:utf-8 -*-

import numpy as np
import matplotlib.pyplot as plt
import json
from decimal import Decimal


# 保留浮点类型
jstring=‘{"name":"pro","price":12.05}‘
str=json.loads(jstring,parse_float=Decimal)
print(str)

# 柱状图
def is_outlier(points,threshold=3.5):
if len(points.shape)==1:
points=points[:,None]

median=np.median(points,axis=0)
diff=np.sum((points-median)**2,axis=-1)
diff=np.sqrt(diff)
med_abs_deviation=np.median(diff)

modified_z_score=0.6745*diff/med_abs_deviation
return modified_z_score > threshold


x=np.random.random(10)
buckets=50
np.r_[x,-49,95,100,-100]
fitered=x[~is_outlier(x)]

plt.figure()

plt.subplot(211)
plt.hist(x,buckets)
plt.xlabel(‘Raw‘)

plt.subplot(212)
plt.hist(fitered,buckets)
plt.xlabel(‘Cleaned‘)

plt.show()
















































以上是关于python3绘图示例1(基于matplotlib)的主要内容,如果未能解决你的问题,请参考以下文章

python3绘图示例6-2(基于matplotlib,绘图流程介绍及设置等)

python3绘图示例4(基于matplotlib:箱线图散点图等)

python3绘图示例2(基于matplotlib:柱状图分布图三角图等)

python3绘图示例3(基于matplotlib:折线图等)

Python3绘图之Matplotlib(03)

Python3绘图之Matplotlib(01)