English 中文(简体)
Python 中口腔平均中值
原标题:harmonic mean in python

Python (scipy.stats.hmoles ) 中的调和平均函数要求输入为正数 。

例如:

from scipy import stats
print stats.hmean([ -50.2 , 100.5 ])

结果:

ValueError: Harmonic mean only defined if all elements greater than zero

我从数学上看不出为什么会发生这种情况,但极少出现的情况除外,即你最终会以零除以零。“代码” hume ()

我是不是在数学中遗漏了什么东西? 或者这真的是在 SciPy 中的限制吗?

你会如何去寻找 一套数字的和谐度 可能是正的或负的, 在python 中可能是正的或负的?

最佳回答

口音中值仅针对正数数数组定义。 如果您尝试用负数数组来计算, 就会得到各种奇怪和无用的结果, 即使您没有按 0 。 例如, 将公式应用到 3, 3, 3, 4 表示12 。

问题回答

您可以使用调和平均值来定义等式:

len(a) / np.sum(1.0/a) 

但维基百科表示,

http://en.wikipedia.org/wiki/Harmonic_mement

如果您使用 Python & gt; = 3. 6, 有一个统计库:

https://docs.python.org/3/library/statistics.html

您可以使用它这种下流的方法。让我们假设你有一个列表, 列出您想要找到的下流方法 :

list = [11, 13, 12, 15, 17]
import statistics as s
s.harmonic_mean(list)

它有其他方法,如标准、差异、模式、中值、中值等,这些方法也非常有用。

" 调和 " 的数学定义本身并不禁止对负数应用(尽管你可能不想计算+1和-1的调和平均值),但是,它旨在计算数量等比率的平均值,以便给每个数据点以同等的权重,而在算术中,极端数据点的比重会高得多,因此不理想。

所以,你要么尝试用硬码来拼写定义, 就像@HYRY建议的那样, 要么在错误的语境中应用了调和的意思。





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签