腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(31)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
2
回答
peakutils
的导入错误
我正在尝试使用库,并已使用但是当我试图在我的jupyter笔记本中导入相同的内容时,它会显示之前的导入错误,我从未遇到过这样的问题。我检查了包是否安装在我正在使用的环境中: (DAND) C:\Users\DELL>pip install
peakutils
Requirement already satisfied:
peakutils
in c:\users\dell\an
浏览 2
修改于2017-05-23
得票数 1
回答已采纳
1
回答
AttributeError:模块“”
peakutils
“”没有属性“”indexes“”
我正在尝试使用
peakutils
来寻找顶点。下面是我的代码:import
peakutils
import matplotlib.pyplot as pltestimated_data[:][0] # First column data index =
peakutils
.indexesshengjie/Library
浏览 7
修改于2018-02-03
得票数 1
回答已采纳
1
回答
peakutils
.peak在python中的conda安装
我想用我在python中使用anaconda包。如何使用conda下载
peakutils
包?我使用但我得到的错误是:ImportError: No modulenamed
peakutils
.peak
浏览 0
提问于2017-05-16
得票数 0
1
回答
使用
peakutils
-检测“沉闷”的峰值
我目前正在使用
peakutils
在一些数据中查找峰值。我的数据包含一些“暗峰”,这就是我的峰在某种程度上的平台期。即使在尝试了阈值和最小距离参数之后,我也无法设置代码来查找这些峰值。
浏览 4
提问于2017-07-23
得票数 0
1
回答
peakutils
.indexes提供了TypeError:只有整数标量数组才能转换为标量索引
我有一个名为self.data_的浮点数列表,我将这个列表提供给
peakutils
.indexes(),如下所示: 索引=
peakutils
.indexes(self.data_,thres=0.1,
浏览 0
提问于2017-04-07
得票数 2
2
回答
为什么
peakutils
.peak.indexes()似乎忽略了提供的阈值?
我可以让
peakutils
.peak.indexes()方法返回一些最重要的峰值(蓝色信号)的X和Y坐标:indexes =
peakutils
.peak.indexes(np.array(power_lvls), thres=0.6/max(power_lvls), min_dist=120)indexes =
peakutils
浏览 1
修改于2018-03-26
得票数 0
回答已采纳
1
回答
应用函数对熊猫数据进行处理,得到不同大小的数据输出
下面是我为应用函数编写的内容:import
peakutils
以下是我能做的工作:import numpy as npfor column in df:indexes.append(
peakutils
.indexes(df[column], thres=0.02
浏览 6
提问于2016-10-13
得票数 1
回答已采纳
1
回答
如何为峰值设置最大高度[python]
我目前正在使用
peakutils
包来识别python中的峰值。然而,我不知道如何只索引有一定高度的峰值。有这个功能吗?indexes =
peakutils
.indexes(data, thres=0.02/max(data), min_dist=5) 这是我目前的索引代码。
浏览 1
提问于2016-01-26
得票数 2
回答已采纳
1
回答
如何使用Python绘制所有峰值
我正在使用
peakutils
Python包检测我的数据中的峰值( estimated.csv - found 的第二列)(单击链接)。下面是我用来查找峰值的代码:import
peakutils
col2 = estimated_data[:][1] # Second column datainde
浏览 4
修改于2017-06-13
得票数 3
2
回答
如何从巨蟒的上升尾谱中减去基线?
share[:,1])plt.plot(intensity_rubber)
peakutils
包:import
peakutils
intensity_
peakutils
= share[:,1] - baseline
浏览 13
修改于2021-02-04
得票数 3
回答已采纳
2
回答
基于Python的Matlab查找峰值算法
在Matlab中,我有下面这行代码:因此,我最初尝试了
peakutils
.indexes提供的方法,方法如下:for val in locs:我不太确定'thres=0‘,但在matlab中,阈值的默认值是0,即使它看起来是以不同的方式与
peakutils
.in
浏览 1
修改于2018-11-15
得票数 3
1
回答
在R包中包含Python函数,而无需在每次使用该函数时导入整个包
函数中使用mgcv包中的gam,我可以编写如下代码: myfunc <- function(y, x, df){} 现在,假设我想使用
peakutils
我可以写, myfunc <- function(y){ pu$indexes(y) } 但这会在每次调用myfunc
浏览 12
修改于2019-10-11
得票数 0
回答已采纳
1
回答
时间序列数据的峰值到低谷
# Import Librariesimport numpy as npfrom
peakutils
.plot importas_matrix()print(values)print(dates) peaks =
peakutils
.indexes
浏览 5
提问于2017-03-31
得票数 3
1
回答
如何提取山峰?
信号看上去如下:上面的信号是用峰值提取的:signal[:, 1] = np.nan_to_num(np.log(signal[:, 1])) peaks =
peakutils
.indexes
浏览 2
提问于2022-07-15
得票数 0
1
回答
从数据中删除基线
按照
PeakUtils
库()的指南,作者将数据拟合成一个多项式,然后在此基础上找到一个基线并减去它。pyplot.figure(figsize=(10,6))pyplot.title("Data with baseline") base =
peakutils
.baseline
浏览 4
修改于2016-11-17
得票数 0
回答已采纳
4
回答
如何获得复数RTL-SDR信号峰的坐标?
:import
peakutils
.peak indexes =
peakutils
.peak.indexes
浏览 5
修改于2018-03-20
得票数 0
1
回答
如何检测和过滤时间序列数据的峰值?
我试着:indices =
peakutils
.indexes(df, thres=0.4, min_dist=1000)然而,我得到了
浏览 0
提问于2018-06-25
得票数 0
回答已采纳
1
回答
ProQEXAFS: ImportError:无法从“lmfit.lineshapes”导入名称“donaich”
完全错误:将~\Anaconda3XRaylrach更新到0.9.60版本解决了这个问题,但是产生了一个新的错误: 导入tkinter、time、os、psutil、、sys、shutil、ast、codecs、re、larch、gc、
peakutils
.peak
浏览 11
修改于2022-09-14
得票数 0
1
回答
如何减少峰值检测问题中的误差?
或者使用
peakutils
这样做的任何方法? 现在它已经停止了错误地检测小峰值,但似乎仍然随机错过了大峰值,有人知道为什么吗? ?
浏览 71
修改于2019-04-30
得票数 0
回答已采纳
1
回答
try/ end语句中"None“结束"pass”在计算时间上的差异
确切的代码是: indexes =
peakutils
.peak.interpolate(self.list_height, input_1, ind=indexes, width=self.gauss_width
浏览 5
修改于2017-07-05
得票数 0
回答已采纳
第 2 页
领券