mernst / basic-stats

A GUI program that computes mean, standard deviation, etc.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Basic Statistics

Basic Statistics is a Java-based GUI program that computes statistics on a set of numbers. This implementation is intended to be used in a git bisect exercise.

How to run Basic Statistics from the terminal:

Run this command from the Basic Statistics root directory, which contains the build.gradle build file.

  1. ./gradlew run

The application's GUI will show up.

For Windows, use gradlew.bat instead of ./gradlew.

How to build Basic Statistics and run its tests from the terminal:

  1. Change into the Basic Statistics root directory, which contains the build.gradle build file.

  2. Run ./gradlew compile to compile Basic Statistics.

  3. Run ./gradlew build to compile and run tests.

  4. Run ./gradlew clean whenever you want to clean up the project (i.e., delete all generated files). You need to do this to re-run the tests, if they have already been run after the most recent code change. For example: ./gradlew clean build.

Program features:

  • Displays (at the bottom of the screen) a set of entered numbers.
  • Computes the mean of the set of numbers.
  • Computes the median of the set of numbers.
  • Computes the mode of the set of numbers.

About

A GUI program that computes mean, standard deviation, etc.


Languages

Language:Java 100.0%