A Java-based implementation for descriptive statistics. This implementation is merely intended to be used in software engineering courses.
How to build and test (from Terminal):
-
Make sure that you have Ant installed.
-
cd into the root directory, which contains the build.xml build file.
-
Run
ant
to compile. -
Compiled java classes will be in the
bin
directory. -
Run
ant test
to run all unit tests. -
Whenever you want to clean up the project, run
ant clean
How to run (from Terminal):
- After building the project (i.e., running
ant
), cd into thebin
directory and run:java BasicStats
. The application's GUI should show up.
Program features:
- Displayed numbers
- Mean computation
- Median computation
- Mode computation