gpt4 book ai didi

matplotlib - matplotlib中的n个垃圾箱和补丁是什么?

转载 作者:行者123 更新时间:2023-12-04 10:38:24 24 4
gpt4 key购买 nike

我在matplotlib教程中阅读了此内容:
n, bins, patches = plt.hist(x, 50, normed=1, facecolor='g', alpha=0.75)
我想知道什么是n,垃圾箱和补丁

最佳答案

我本来建议reading the docs,但这没有提供任何额外的解释,尽管我仍然建议您看看。

  • n:是直方图
  • 的每个bin中的计数数
  • bins:每个bin的左手边
  • patches是用于创建直方图的单个补丁,例如矩形
  • 的集合

    修补程序可用于更改单个条的属性,如 these examples所示。这是其用法的一个简单示例
    import numpy as np
    import matplotlib.pyplot as plt
    x = np.random.normal(size=100)
    n, bins, patches = plt.hist(x)

    plt.setp(patches[0], 'facecolor', 'g')
    plt.show()

    通常,像 this demo一样,将 nbins用于后续数据分析

    关于matplotlib - matplotlib中的n个垃圾箱和补丁是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23773131/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com