1、问题描述

画直方图的时候出现一下错误

2、解决方案

错误代码 pyplot.hist(heights, 20, normed=True, histtype='step', cumulative=True)
正确代码 pyplot.hist(heights, 20, density=True, histtype='step', cumulative=True)
#normed参数换成density,可能是版本的问题。

AttributeError: ‘Polygon‘ object has no property ‘normed‘相关推荐

  1. python中matplotlib关于直方图AttributeError: ‘Rectangle‘ object has no property ‘normed‘的解决方法

    文章目录 遇到的问题 解决方法 参考 3秒版本: 改成如下形式即可,去掉normed,改成density(布尔值),意思是开启概率分布(直方图面积为1). plt.hist(hist_r, bins ...

  2. python3画直方图出现“Polygon‘ object has no property ‘normed”

    直方图原程序 import numpy as np import matplotlib.pyplot as pltnp.random.seed(0) mu,sigma = 100, 20 #均值和标准 ...

  3. 成功解决AttributeError: ‘PathCollection‘ object has no property ‘n_levels‘

    成功解决AttributeError: 'PathCollection' object has no property 'n_levels' 目录 解决问题 解决思路 解决方法 解决问题 Attrib ...

  4. 已解决AttributeError: ‘Rectangle‘ object has no property ‘laber‘

    已解决(matplotlib模块画柱状图报错)AttributeError: 'Rectangle' object has no property 'laber' 文章目录 报错信息 报错翻译 报错原 ...

  5. Python错误:AttributeError: 'generator' object has no attribute 'next'解决办法

    今天在学习生成器对象(generation object)运行以下代码时,遇到了一个错误: #定义生成器函数 def liebiao(): for x in range(10): yield x #函 ...

  6. AttributeError: 'dict' object has no attribute 'status_code'

    前端AJAX请求数据,提示错误:"AttributeError: 'dict' object has no attribute 'status_code'". 原因:是提示返回对象 ...

  7. Traceback (most recent call last): File AttributeError: 'NoneType' object has no attribute 'group'

    Traceback (most recent call last):File "<stdin>", line 1, in <module> Attribut ...

  8. 解决:AttributeError: ‘Graph‘ object has no attribute ‘number_of_selfloops‘

    解决:AttributeError: 'Graph' object has no attribute 'number_of_selfloops' 目录 解决:AttributeError: 'Grap ...

  9. AttributeError: ‘FPDF‘ object has no attribute ‘unifontsubset‘

    AttributeError: 'FPDF' object has no attribute 'unifontsubset' 目录 AttributeError: 'FPDF' object has ...

  10. AttributeError: ‘Series‘ object has no attribute ‘as_matrix‘

    AttributeError: 'Series' object has no attribute 'as_matrix' 问题: y_test = test_shifted["y_t+1&q ...

最新文章

  1. SCOM2016 安装OS或应用管理包
  2. AJAX开发简略 (转)
  3. go语言的计数器iota
  4. 【图文详解】如何彻底删除JDK(以win10、jdk1.8为例)
  5. 【Linux网络编程学习】预备知识(网络字节序、IP地址转换函数、sockaddr数据结构)
  6. java httpclient4_httpclient4使用说明
  7. 【POJ3415】 Common Substrings (SA+单调栈)
  8. 成为高级程序员的 10 个步骤
  9. python workflow_用 Python 写 Alfred3 workflow 插件,一个最小示例
  10. 简明python教程电子书下载_简明Python教程PDF
  11. 磁力链转bt种子 python_实战Python实现BT种子转化为磁力链接
  12. c语言编程运动会分数统计系统报告,C语言课程设计报告运动会分数统计系统.pdf...
  13. php字体颜色代码大全,CSS中关于文本字体颜色(CSS color)的详解
  14. nmos导通流向_MOS管类型-MOS管4种类型与工作原理解析
  15. centos7 80端口被占用导致nginx或httpd无法启用的解决方法
  16. OpenPose+VS2015+Windows+CUDA8+cuDNN5.1 官方配置教程
  17. word转html linux java,Java-linux下如何代码实现word转换成html
  18. Windows下如何将文件打包压缩成 .tar.gz格式
  19. Hadoop分布式集群的搭建
  20. 网络监测是如何工作的?

热门文章

  1. 用C#创建Windows服务(Windows Services)并打包!
  2. 【TDA4系列】硬件分析与刷写程序的几种方式
  3. 3月17日 基于特征点的RANSAC最优估计基础矩阵,稀疏光流法综述
  4. 分享一下滑动验证码的模拟滑动攻克
  5. Chrome Firefox for Linux 直达下载链接
  6. 编写安装配置DNS服务脚本
  7. 【转载】白话经典算法系列之三 希尔排序的实现
  8. WPF学习笔记(6):DataSet更新后台数据库个别列失败的问题
  9. linux服务器MySQL数据从磁盘拷贝以及恢复
  10. servlet中doGet()和doPost()的区别