print("1.Using the circumstances provided by your unit commander, how did you distribute the 30 men to the ten locations? ")
print("")
print("Answer: I put a line between every three troops I counted to categorize the numbers from smallest to largest. ")
print("")
print("2.Determine the median value of the supplied data (troop strengths). Where in the ten places can you locate the data's median value? Why do you assume this?")
print("")
print("Answer: The given data's median value, math.median(strength), is 33.5, which falls between the ends of locations 5 and 6. ")
print("")
print("3.For each site, what is the average deployment strength? How did you arrive at this conclusion? What does this mean in terms of unit deployment per location?")
print("")
print("Answer: The location's average deployment strength is (Loc 1:13.33 Loc 2: 18 Loc 3: 23.33 Loc 4: 25.66 Loc 5: 31.66 Loc 6: 35 Loc 7: 37.66 Loc 8: 40 Loc 9: 42.66 Loc 10: 46).")
print("")
print(" 4.Describe the form of the graph that your application displays. What does it resemble? Based on the data values you changed, how can you explain this occurrence?")
print("Answer: Locations 1A TO 10B are gradually climbing, while the location 10C had a significant increase according to the data in the graph.")
TROOP ASSIGNMENTS
('Location 1', array([12, 13, 15]))
('Location 2', array([17, 18, 19]))
('Location 3', array([23, 23, 24]))
('Location 4', array([24, 26, 27]))
('Location 5', array([31, 31, 33]))
('Location 6', array([34, 35, 36]))
('Location 7', array([36, 38, 39]))
('Location 8', array([39, 40, 41]))
('Location 9', array([43, 43, 44]))
('Location 10', array([45, 46, 49]))
()
1.Using the circumstances provided by your unit commander, how did you distribute the 30 men to the ten locations?
Answer: I put a line between every three troops I counted to categorize the numbers from smallest to largest.
2.Determine the median value of the supplied data (troop strengths). Where in the ten places can you locate the data's median value? Why do you assume this?
Answer: The given data's median value, math.median(strength), is 33.5, which falls between the ends of locations 5 and 6.
3.For each site, what is the average deployment strength? How did you arrive at this conclusion? What does this mean in terms of unit deployment per location?
Answer: The location's average deployment strength is (Loc 1:13.33 Loc 2: 18 Loc 3: 23.33 Loc 4: 25.66 Loc 5: 31.66 Loc 6: 35 Loc 7: 37.66 Loc 8: 40 Loc 9: 42.66 Loc 10: 46).
4.Describe the form of the graph that your application displays. What does it resemble? Based on the data values you changed, how can you explain this occurrence?
Answer: Locations 1A TO 10B are gradually climbing, while the location 10C had a significant increase according to the data in the graph.