关注
码龄
粉丝数
原力等级 --
被采纳
被点赞
采纳率
qq_43381054
2022-04-22 16:18
采纳率: 75%
浏览 58
首页
Python
已结题
plt.hist中的weights参数怎么用?
python
问题遇到的现象和发生背景
问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果
收起
写回答
好问题
0
提建议
追加酬金
关注问题
微信扫一扫
点击复制链接
分享
邀请回答
编辑
收藏
删除
收藏
举报
追加酬金
(90%的用户在追加酬金后获得了解决方案)
当前问题酬金
¥
0
(可追加 ¥500)
支付方式
扫码支付
加载中...
支付金额
15
元
提供问题酬金的用户不参与问题酬金结算和分配
支付即为同意
《付费问题酬金结算规则》
0
条回答
默认
最新
查看更多回答(-1条)
向“C知道”追问
报告相同问题?
提交
关注问题
plt
.
hist
()测试
python
2022-07-14 19:53
回答 1
已采纳
import numpy as np import matplotlib.pyplot as
plt
np.random.seed(0) mu, sigma = 100, 20 a = np.ra
python
在类
中
调用
plt
.show()函数不显示
python
2021-06-21 11:21
回答 1
已采纳
类里面的try ... except是不是忘记缩进了?它们现在不在for循环内,应该不会被执行。另外,test_1.draw()调用方法,原先是不是忘记加括号了。
python
中
plt
.imshow与io.imshow的区别
python
有问必答
2021-08-29 10:27
回答 1
已采纳
scikit-image 图片读取、显示和保存,其
中
skimage提供了io模块,顾名思义,这个模块是用来图片输入输出操作的。和
plt
.show()相比,不加
plt
.show()不会显示窗口比如这个:
关于
python
中
plt
.
hist
参数
的使用详解
2020-09-18 09:27
Python
中
的
plt
.
hist
()函数用于生成直方图,直方图是数据分布的图形表示,其
中
数据被分割成连续的、不重叠的间隔或bin。
plt
.
hist
()函数属于matplotlib库,它是
Python
中
用于绘图和可视化的主要库之一。在本文
中
,我们...
Jupyter notebook 使用
plt
.show()不显示图片
jupyter
python
2022-03-27 22:35
回答 2
已采纳
这样试试,在show 前加句 %matplotlib inline
plt
.savefig()使用时报错
python
2022-04-18 20:03
回答 1
已采纳
保存地址里\U被转义了呗,可改为
plt
.savefig(r'C:\Users\30575\Desktop\daima-tu', dpi=500, bbox_inches='tight') # or
为什么
plt
.style.use('seaborn')无法显示
中
文???
python
有问必答
2021-05-09 11:07
回答 5
已采纳
您先再测试下 看是不是这个原因 谢谢
python
中
plt
.
hist
_
python
中
plt
.
hist
参数
详解
2021-03-05 19:33
栗子肉的博客
matplotlib.pyplot.
hist
(x, bins=10, range=None, normed=False,
weight
s=None, cumulative=False, bottom=None,
hist
type=u'bar', align=u'mid', orientation=u'vertical',rwidth=None, log=False, color=None, label...
python
用
plt
.title()怎么把图的标题放在图的下面?或者有其他的方法解决
python
2019-01-24 16:27
回答 2
已采纳
←如果以下回答对你有帮助,请点击右边的向上箭头及采纳下答案
plt
.title()没有位置设置功能,可以不显示title,用text代替 相关资料: https://blog.csdn.net/
plt
.figure() 报错SyntaxError: invalid syntax
jupyter
python
有问必答
2022-01-13 15:31
回答 3
已采纳
少了两个右括号 修改如下: s = abs(np.sin((ang1-ang2)/180*np.pi)*l*h)+abs(np.cos((ang1-ang2)/180*np.pi)*w*h)
为什么用
plt
.figure(figsize = (20,20),dpi=60)设置画布大小没有效果?
python
2022-04-18 20:18
回答 2
已采纳
打印下joypy.joyplot的文档,可以发现其本身就接受figsize
参数
,
plt
.figure设置不起作用大概率是被覆盖了
python
--
plt
.
hist
函数的输入
参数
和返回值的解释
2020-11-15 12:19
show-er-打怪之路的博客
python
中
plt
.
hist
函数的常用输入
参数
和返回值的解释,并给出用
plt
.
hist
函数作直方图的示例
plt
.contourf()
中
origin
参数
是什么意思
python
大数据
2022-10-30 10:28
回答 1
已采纳
请看👉 :
plt
.contourf()
python
绘图
hist
bin
参数
_关于
python
中
plt
.
hist
参数
的使用详解
2020-12-03 13:21
weixin_40001048的博客
如下所示:matplotlib.pyplot.
hist
(x, bins=10, range=None, normed=False,
weight
s=None, cumulative=False, bottom=None,
hist
type=u'bar', align=u'mid', orientation=u'vertical',rwidth=None, log=False, color=...
python
基础编程:关于
python
中
plt
.
hist
参数
的使用详解
2020-03-21 21:59
程序员学府的博客
今天小编就为大家分享一篇关于
python
中
plt
.
hist
参数
的使用详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧 如下所示: matplotlib.pyplot.
hist
( x, bins=10, range=None, normed=False, ...
Matplotlib(3、直方图) -
plt
.
hist
()
参数
解释&应用实例
2021-02-21 22:07
hengheng21的博客
一、
plt
.
hist
()
参数
详解 简介:
plt
.
hist
():直方图,一种特殊的柱状图。 将统计值的范围分段,即将整个值的范围分成一系列间隔,然后计算每个间隔
中
有多少值。 直方图也可以被归一化以显示“相对”频率。 然后,它...
python
统计分析——直方图(
plt
.
hist
)
2024-01-03 05:00
maizeman126的博客
使用matplotlib.pyplot.
hist
()函数绘制直方图 from matplotlib.pyplot as
plt
data_set=np.array([2,3,3,4,4,4,4,5,5,6])
plt
.
hist
(fish_data) 下面介绍
plt
.
hist
()函数
中
常用的几个重要
参数
(
参数
等号后为默认设置)...
python
中
normed_关于
python
中
plt
.
hist
参数
的使用详解
2020-11-30 09:26
weixin_39630744的博客
如下所示:matplotlib.pyplot.
hist
(x, bins=10, range=None, normed=False,
weight
s=None, cumulative=False, bottom=None,
hist
type=u'bar', align=u'mid', orientation=u'vertical',rwidth=None, log=False, color=...
python
中
plt
.
hist
参数
详解
2019-11-17 14:53
敲代码的乔帮主的博客
matplotlib.pyplot.
hist
( x, bins=10, range=None, normed=False,
weight
s=None, cumulative=False, bottom=None,
hist
type=u'bar', align=u'mid', orientation=u'vertical', rwidth=No...
python
中
plt
hist
用法_关于
python
中
plt
.
hist
参数
的使用详解
2020-12-14 18:52
weixin_39852121的博客
如下所示:matplotlib.pyplot.
hist
(x, bins=10, range=None, normed=False,
weight
s=None, cumulative=False, bottom=None,
hist
type=u'bar', align=u'mid', orientation=u'vertical',rwidth=None, log=False, color=...
没有解决我的问题,
去提问
向专家提问
向AI提问
“有问必答”服务下线公告
◇ 用户帮助中心
◇《冲榜分奖金》活动下线公告 及AIGC类回答处理措施
◇ 新手如何提问
◇ 奖惩公告
问题事件
关注
码龄
粉丝数
原力等级 --
被采纳
被点赞
采纳率
系统已结题
4月30日
关注
码龄
粉丝数
原力等级 --
被采纳
被点赞
采纳率
创建了问题
4月22日
悬赏问题
¥15
用verilog实现tanh函数和softplus函数
¥15
求京东批量付款能替代天诚
¥15
slaris 系统断电后,重新开机后一直自动重启
¥15
51寻迹小车定点寻迹
¥15
谁能帮我看看这拒稿理由啥意思啊阿啊
¥15
关于vue2中methods使用call修改this指向的问题
¥15
idea自动补全键位冲突
¥15
请教一下写代码,代码好难
¥15
iis10中如何阻止别人网站重定向到我的网站
¥15
滑块验证码移动速度不一致问题