Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement a Java class Stats to calculate the mean, median, empirical mode, population variance, and sample variance as specified below. package assignment2; public class Stats

Implement a Java class Stats to calculate the mean, median, empirical mode, population variance, and sample variance as specified below.
package assignment2;
public class Stats {
// mean
public static double mean(double[] x) {
}
// median
public static double median(double[] x) {
}
// empirical mode
public static double mode(double[] x) {
}
// population variance
public static double var(double[] x) {
}
// sample variance
public static double s2(double[] x) {
}
public static void main(String[] args) {
double[] x = {3, -2, 5, 0, 9, 3, 2, 1};
System.out.println("mean = " + mean(x));
System.out.println("median = " + median(x));
System.out.println("empirical mode = " + mode(x));
System.out.println("var = " + var(x));
System.out.println("sample var = " + s2(x));
} }
A sample test program is provided in the main method, which will produce the output:
mean = 2.625
median = 2.5
empirical mode = 2.25
var = 9.734375
sample var = 11.125

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases DeMYSTiFieD

Authors: Andy Oppel

2nd Edition

0071747990, 978-0071747998

More Books

Students also viewed these Databases questions