8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

在我的直方图 Python/Matplotlib 上添加数据标签

Melloware 2月前

62 0

我正在尝试在直方图顶部添加数据标签值,以尝试明显地显示频率。这是我现在的代码,但不确定如何编写代码将值放在顶部:plt.figure(figsize=(15,10))...

我正在尝试在直方图顶部添加数据标签值,以尝试明显地显示频率。

这是我现在的代码,但不确定如何编写代码来将值置于顶部:

plt.figure(figsize=(15,10))
plt.hist(df['Age'], edgecolor='white', label='d')
plt.xlabel("Age")
plt.ylabel("Number of Patients")
plt.title = ('Age Distrubtion') 

我想知道是否有人知道执行此操作的代码:

enter image description here

帖子版权声明 1、本帖标题:在我的直方图 Python/Matplotlib 上添加数据标签
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Melloware在本站《matplotlib》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 我已创建以下调用来导出 JFrog X-ray SBOM 数据curl -u $USER_NAME:$API_KEY -X POST $ARTIFACT_DOMAIN_URL/xray/api/v1/component/exportDetails \-H \'Content-Type: application/

    我创建了以下调用来导出 JFrog X-ray SBOM 数据

    curl -u $USER_NAME:$API_KEY -X POST $ARTIFACT_DOMAIN_URL/xray/api/v1/component/exportDetails \
    -H "Content-Type: application/json" \
    -H "Accept: application/json" \
    -o "test.json" \
    -d '{
        "component_name": "docker://test-docker-image:latest",
        "package_type": "docker",
        "sha_256": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
        "violations": true,
        "include_ignored_violations": false,
        "license": true,
        "exclude_unknown": false,
        "security": true,
        "malicious_code": false,
        "iac": false,
        "services": false,
        "applications": false,
        "output_format": "json",
        "spdx": false,
        "cyclonedx": true,
        "cyclonedx_format": "json",
        "vex": false,
        "operational_risk": false
    }'
    
    

    输出写在 test.json 文件中,但它是二进制格式,我无法读取它,也无法在终端上看到结果。

    如果我尝试在终端上查看输出,我会收到以下警告消息

    Warning: Binary output can mess up your terminal. Use "--output -" to tell
    Warning: curl to output it to your terminal anyway, or consider "--output
    Warning: <FILE>" to save to a file.
    

    如果有人知道这个问题的解决方案或除了从 UI 导出 X 射线 SBOM 数据的任何其他方法,请告诉我。

返回
作者最近主题: