這是我輸入:如何查找Ruby數組的異常值/整數散列?
[{name: 'John', age: 50}, {name: 'Bob', age: 50}, {name: 'Paul', age: 0}, {name: 'Alfred', age: 100}]
我想找到極端的年齡,我希望能夠把作爲變量的極限應該如何理智是。所以,舉個例子,我想說我想找到10%的極端值。所以例如輸出將是這樣的:
# the extreme min values => [{name: 'Paul', age: 0}]
# the extreme max values => [{name: 'Alfred', age: 100}]
我該怎麼做?
我發現了一些在線資源可能會有所幫助,但老實說,我不能夠按照自己的例子:
http://sciruby.com/blog/2013/11/07/statistics-with-ruby-time-series-and-general-linear-models/ http://statsample.apsique.cl/Statsample/Graph/Boxplot.html
對不起,我沒聽懂。你可以添加一個例子嗎? '[L-(l-1),L-1]'? – ChristofferJoergensen 2014-11-04 22:30:27
@ChristofferJoergensen參見上面的工作示例。 – mcfinnigan 2014-11-05 09:17:49