Statistics with numpy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:34:10Z http://stackoverflow.com/feeds/question/570137 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/570137/statistics-with-numpy 1 Statistics with numpy hyperboreean 2009-02-20T16:04:25Z 2009-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#570169 4 Answer by dF for Statistics with numpy dF 2009-02-20T16:12:39Z 2009-02-20T16:12:39Z <p>Say you have</p> <pre><code>&gt;&gt;&gt; prices = array([100, 200, 150, 145, 300]) &gt;&gt;&gt; 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>&gt;&gt;&gt; sum(prices &gt; 1.10 * base_prices) 2 </code></pre> http://stackoverflow.com/questions/570137/statistics-with-numpy/570197#570197 0 Answer by Pesto for Statistics with numpy Pesto 2009-02-20T16:19:14Z 2009-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#570204 0 Answer by rz for Statistics with numpy rz 2009-02-20T16:21:24Z 2009-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 &lt;= (1+x)*bp]) # 1 # how many are within 50% len([p for p,bp in zip(prices,baseprices) if p &lt;= (1+y)*bp]) # 5 </code></pre> http://stackoverflow.com/questions/570137/statistics-with-numpy/570372#570372 1 Answer by David for Statistics with numpy David 2009-02-20T16:58:35Z 2009-02-20T16:58:35Z <p>Just for amusement, here's a slightly different take on dF's answer:</p> <pre><code>&gt;&gt;&gt; prices = array([100, 200, 150, 145, 300]) &gt;&gt;&gt; base_prices = array([90, 220, 100, 350, 350]) &gt;&gt;&gt; ratio = prices / base_prices </code></pre> <p>Then you can extract the number that are 5% above, 10% above, etc. with</p> <pre><code>&gt;&gt;&gt; sum(ratio &gt; 1.05) 2 &gt;&gt;&gt; sum(ratio &gt; 1.10) 2 &gt;&gt;&gt; sum(ratio &gt; 1.15) 1 </code></pre>