Statistics with numpy - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T04:34:10Zhttp://stackoverflow.com/feeds/question/570137http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/570137/statistics-with-numpy1Statistics with numpyhyperboreean2009-02-20T16:04:25Z2009-02-20T16:58:35Z
<p>I am working at some plots and statistics for work and I am not sure how I can do some statistics using numpy: I have a list of prices and another one of basePrices. And I want to know how many prices are with X percent above basePrice, how many are with Y percent above basePrice.</p>
<p>Is there a simple way to do that using numpy?</p>
http://stackoverflow.com/questions/570137/statistics-with-numpy/570169#5701694Answer by dF for Statistics with numpydF2009-02-20T16:12:39Z2009-02-20T16:12:39Z<p>Say you have</p>
<pre><code>>>> prices = array([100, 200, 150, 145, 300])
>>> base_prices = array([90, 220, 100, 350, 350])
</code></pre>
<p>Then the number of prices that are more than 10% above the base price are</p>
<pre><code>>>> sum(prices > 1.10 * base_prices)
2
</code></pre>
http://stackoverflow.com/questions/570137/statistics-with-numpy/570197#5701970Answer by Pesto for Statistics with numpyPesto2009-02-20T16:19:14Z2009-02-20T16:19:14Z<p>In addition to df's answer, if you want to know the specific prices that are above the base prices, you can do:</p>
<p>prices[prices > (1.10 * base_prices)]</p>
http://stackoverflow.com/questions/570137/statistics-with-numpy/570204#5702040Answer by rz for Statistics with numpyrz2009-02-20T16:21:24Z2009-02-20T16:21:24Z<p>I don't think you need numpy ...</p>
<pre><code>prices = [40.0, 150.0, 35.0, 65.0, 90.0]
baseprices = [45.0, 130.0, 40.0, 80.0, 100.0]
x = .1
y = .5
# how many are within 10%
len([p for p,bp in zip(prices,baseprices) if p <= (1+x)*bp]) # 1
# how many are within 50%
len([p for p,bp in zip(prices,baseprices) if p <= (1+y)*bp]) # 5
</code></pre>
http://stackoverflow.com/questions/570137/statistics-with-numpy/570372#5703721Answer by David for Statistics with numpyDavid2009-02-20T16:58:35Z2009-02-20T16:58:35Z<p>Just for amusement, here's a slightly different take on dF's answer:</p>
<pre><code>>>> prices = array([100, 200, 150, 145, 300])
>>> base_prices = array([90, 220, 100, 350, 350])
>>> ratio = prices / base_prices
</code></pre>
<p>Then you can extract the number that are 5% above, 10% above, etc. with</p>
<pre><code>>>> sum(ratio > 1.05)
2
>>> sum(ratio > 1.10)
2
>>> sum(ratio > 1.15)
1
</code></pre>