[jira] Created: (LANG-277) Javadoc errors on StringUtils.splitPreserveAllTokens(String, char)

2006-08-30 Thread Ken Geis (JIRA)
Affects Versions: 2.1 Reporter: Ken Geis Priority: Minor In the Javadoc for StringUtils.splitPreserveAllTokens(String, char) there are a couple of mistakes. I didn't check for similar mistakes in the similar functions with different signatures

[math] inefficient percentile implementation

2004-11-14 Thread Ken Geis
The docs for org.apache.commons.math.stat.descriptive.rank.Percentile state that To compute percentiles, the data must be (totally) ordered. This is flat out wrong. Sorting first with quicksort leads to O(n lg n) time, and there are selection algorithms for selection that are O(n). Details

[math] statistics performance boost

2004-05-13 Thread Ken Geis
As I explained, I am using commons-math to enable data mining algorithms I am writing. I am using a lot of SummaryStatistics and TTest. Through some profiling, I was able to find places to optimize code and I ended up getting a 15x performance boost within my application. This was from

[Math] Cloning statistics

2004-05-11 Thread Ken Geis
I'm playing with commons-math to implement a data mining algorithm and I am having a performance problem. I am doing running statistics over an ordered set of data, storing the statistics at each new value I come across. One way of doing this would be to have an array of SummaryStatistics and