5.23 LAB: Adjust values in a list by normalizing When analyzing data sets, such as data for human heights or for human weights, a common step is to adjust the data. This adjustment can be done by...



5.23 LAB: Adjust values in a list by normalizing






When analyzing data sets, such as data for human heights or for human weights, a common step is to adjust the data. This adjustment can be done by normalizing to values between 0 and 1, or throwing away outliers.


For this program, adjust the values by dividing all values by the largest value. The input begins with an integer indicating the number of floating-point values that follow.


Output each floating-point value with two digits after the decimal point, which can be achieved as follows:
print('{:.2f}'.format(your_value))


Ex: If the input is:


5 30.0 50.0 10.0 100.0 65.0

the output is:


0.30 0.50 0.10 1.00 0.65

The 5 indicates that there are five floating-point values in the list, namely 30.0, 50.0, 10.0, 100.0, and 65.0. 100.0 is the largest value in the list, so each value is divided by 100.0.



Use Python, please.




= zyBooks<br>My library > COMSC 101: Computer Programming 1 home ><br>5.23: LAB: Adjust values in a list by normalizing<br>E zyBooks catalog<br>2 Help/FAQ<br>SYDNEY REED -<br>3a16TA2153518qxSzqy7<br>LAB<br>5.23.1: LAB: Adjust values in a list by normalizing<br>0/ 10<br>АCTIVITY<br>main.py<br>Load default template..<br>1 ''' Type your code here. '''<br>Run your program as often as you'd like, before submitting for grading. Below, type any needed<br>input values in the first box, then click Run program and observe the program's output in the<br>second box.<br>Develop mode<br>Submit mode<br>Enter program input (optional)<br>If your code requires input values, provide them here.<br>

Extracted text: = zyBooks My library > COMSC 101: Computer Programming 1 home > 5.23: LAB: Adjust values in a list by normalizing E zyBooks catalog 2 Help/FAQ SYDNEY REED - 3a16TA2153518qxSzqy7 LAB 5.23.1: LAB: Adjust values in a list by normalizing 0/ 10 АCTIVITY main.py Load default template.. 1 ''' Type your code here. ''' Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box. Develop mode Submit mode Enter program input (optional) If your code requires input values, provide them here.
Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here