Question: In many data collection process, some data values or observations may lie considerably away from the majority of the data values or observations. While performing



In many data collection process, some data values or observations may lie considerably away from the majority of the data values or observations. While performing statistical analysis, these data values are typically dropped before applying any inferential techniques. You are presented with a single dimensional array which can store up to 10 floating-point values provided as input by the user. Write a program in C++ that computes and displays the maximum, minimum, mean, and standard deviation of the observations stored in the array given as input by the user. Additionally, all data values or observations which are more or less than one standard deviation from the computed mean should be dropped and the new resulting array along with its max, min, mean, and std. dev. values should be computed and displayed. In many data collection process, some data values or observations may lie considerably away from the majority of the data values or observations. While performing statistical analysis, these data values are typically dropped before applying any inferential techniques. You are presented with a single dimensional array which can store up to 10 floating-point values provided as input by the user. Write a program in C++ that computes and displays the maximum, minimum, mean, and standard deviation of the observations stored in the array given as input by the user. Additionally, all data values or observations which are more or less than one standard deviation from the computed mean should be dropped and the new resulting array along with its max, min, mean, and std. dev. values should be computed and displayed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
