Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: newsapps/refine-stats
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: OpenRefine/refine-stats
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Sep 12, 2013

  1. Upgrade Apache Commons Math jar

    sparkica authored and tfmorris committed Sep 12, 2013
    Copy the full SHA
    bf44e5d View commit details
  2. Ignore .class files

    tfmorris committed Sep 12, 2013
    Copy the full SHA
    422984e View commit details
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
*.swp
.svn
.DS_Store
*.swp
.svn
*.class
Binary file removed stats/module/MOD-INF/lib/commons-math-2.1.jar
Binary file not shown.
Binary file added stats/module/MOD-INF/lib/commons-math3-3.1.1.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions stats/src/com/tribapps/refine/stats/Summarize.java
Original file line number Diff line number Diff line change
@@ -25,8 +25,8 @@
import com.google.refine.browsing.RowVisitor;
import com.google.refine.util.ParsingUtilities;

import org.apache.commons.math.stat.descriptive.DescriptiveStatistics;
import org.apache.commons.math.stat.descriptive.rank.Median;
import org.apache.commons.math3.stat.descriptive.DescriptiveStatistics;
import org.apache.commons.math3.stat.descriptive.rank.Median;

public class Summarize extends Command {
protected RowVisitor createRowVisitor(Project project, int cellIndex, List<Float> values) throws Exception {