Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Mean and standard deviation. Write a program that reads a set of floating - point data values. Choose an appropriate mechanism for prompting for the

Mean and standard deviation. Write a program that reads a set of floating-point data values. Choose an appropriate mechanism for prompting for the end of the data set.
When all values have been read, print out the count of the values, the average, and the standard deviation. The average of a data set {x1,.,{:xn} is x=??xin, where ??xi=x1+cdots+xn is the sum of the input values. The standard deviation is
s=??(xi-(x))2n-12
However, this formula is not suitable for the task. By the time the program has computed x, the individual xj are long gone. Until you know how to save these values, use the numerically less stable formula
s=??xi2-1n(??xi)2n-12
You can compute this quantity by keeping track of the count, the sum, and the sum of squares as you process the input values.
Write this program using python in a very simple way
image text in transcribed

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

Students also viewed these Databases questions

Question

1. Are my sources credible?

Answered: 1 week ago

Question

3. Are my sources accurate?

Answered: 1 week ago

Question

1. Is it a topic you are interested in and know something about?

Answered: 1 week ago