| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Statistics101_nbProject.zip | 2026-05-16 | 14.2 MB | |
| README.mkd | 2026-05-13 | 5.3 kB | |
| Statistics101_6.1.zip | 2026-05-12 | 5.9 MB | |
| Statistics101Installer.jar | 2026-05-12 | 5.9 MB | |
| Totals: 4 Items | 26.0 MB | 3 | |
Statistics101_Java_6.1
(Completed 05/11/2026):
Table of Contents
Feature updates
- Added to Help menu:
- "Statistics101 website" which opens the website in the user's default browser.
- "Language Reference Manual" which opens the Resampling Stats language description in the user's default browser.
Fixed bugs in Subroutine library
- percentileCommands.txt PERCENTILE0.
- trimmedMeanCommands.txt REMOVE_OUTLIERS_MODIFIED_ZSCORE
- IFFTandConvolutionCommands.txt COMPLEX_FFTZ and COMPLEX_IFFTZ
Fixed bugs in Java code:
- Removed outdated references to Godaddy website.
- Revised installer generation script so default install location is correct for Windows and macOS.
- ConcatCmd.java: Incorrect substring() indices in toString()
- CompositeCommand.java: Race condition in getLineNumber() and getName()
- FFTCmd.java: Result vectors are never cleared before use
- MinCmd.java: Missing break after NaN detected (inconsistency with MaxCmd)
- TimeplotCmd.java — Division by Zero in index()
- RunsCmd.java — IndexOutOfBoundsException on Empty Vector After clean()
- RotateCmd.java — Division by Zero on Empty Vector
- PoissonCmd.java — Returns -1 for lambda <= 0; Should throw exception
- NormalProbCmd.java and NormalProbInvCmd.java — Wrong Vector Used in Loop
- PutCmd.java — NaN Position Causes Negative Array Index
- ShiftCmd.java — NaN Check Occurs After Lossy Cast
- TakeCmd.java — Error Message References Command Name Instead of Vector Name
- LibIndex.java: mergeIndex() merges with itself
- XorTest.java: leftTest.test() is evaluated twice
- ProgramBuilder.java: argStack declared as a raw SafeStack (no <> args)
- DataVector.java: Deprecated Double constructor used throughout
- Enumerator.java: Deprecated Double constructor used throughout
- NamedValue.java: Deprecated Double constructor used throughout
- Histogram.java: Deprecated Double constructor used throughout
- ArrayStore.java: Raw HashMap without generics
- RawGraph.java: yCurve != Float.NaN never filters NaN (NaN comparisons always false/true)
- RawHistogramGraph.java: clearBackground() uses getYP(0) for height, mismatching drawGraph() which uses getHeight() - y; breaks when Y axis doesn't include 0
- RawBubbleGraph.java: clearBackground() condition bubbleSize > 0 || bubbleSize < 0 && showNegativeRadii is unparenthesized (relies on implicit precedence; fragile)
Download options
Statistics101 program only
If you want just the Statistics101 program, download either Statistics101_6.1.zip file or the installer, InstallStatistics101_6.1.jar
Then,
For the zip file:
-
Download the Statistics101_6.1.zip file
-
Extract the folder from the zip file.
-
Put the extracted folder in a convenient place on your hard drive. For example, in Windows, it is best to put it in C:\Users\Public so that if there are multiple users, they can all access it.
-
The Statistics101.jar file must remain in the extracted folder; do not move it. Instead, create a shortcut to the Statistics101.jar file and put it on your desktop (or other preferred place) for easy access.
-
Make sure you have the Java JRE (version 1.8 or higher) installed on your computer. Get it at https://www.java.com/en/
-
To get an overview of the basic functionality of Statistics101, go to https://statistics101.sourceforge.io/statistics101web_000005.htm and https://statistics101.sourceforge.io/FlashTutorials/FlashTutorialsList.html
For the Installer:
-
Download the installStatistics101_6.1.jar file.
-
Double-click the downloaded file. (You must have the Java JRE (version 1.8 or higher) installed on your computer. Get it at https://www.java.com/en/)
-
Follow the installer's instructions.
-
The Statistics101.jar file must remain in the installation folder; do not move it. Instead, create a shortcut to the Statistics101.jar file and put it on your desktop (or other preferred place) for easy access.
-
To get an overview of the basic functionality of Statistics101, go to https://statistics101.sourceforge.io/statistics101web_000005.htm and https://statistics101.sourceforge.io/FlashTutorials/FlashTutorialsList.html
Statistics101 Source Code
If you want the Statistics101 source code, download Statistics101_nbProject.zip and unzip it.
The resulting folder has the source code and build information usable with the NetBeans IDE. Put the Statistics101_nbProject folder in a convenient place, for example in the directory that holds your other NetBeans projects. You can then open it with NetBeans.
Edit the build.xml file to set these lines (lines 9-11) to fit your directory structure:
<property name="version" value="6.1/>
<property name="projectDir" value="C:\nbProjects\Statistics101\" />
The "version" refers to the version number of the Statistics101 program, so wherever you see "6.1" replace it with the correct version number.