Question texttriple_jump_records.txt contains triple jump data (rank #, distance (m), and windspeed (m/s), arranged in a structure.Note: if you are having trouble downloading the data file, open the link in a new tab, right-click, and select "Save as...".Fill in the template below to complete the following tasks:1. Import the datafile.2. Create three variables for each of rank, distance, and windspeed.3. Determine the rank and distance corresponding to the highest wind speed. Template:Answer 1 Question 1[select: , data = np.genfromtxt(triple_jump_records2.txt, delimiter='\t', skip_header=1, encoding="utf-8", dtype=float), data = np.genfromtxt(triple_jump_records2.txt, delimiter=',', skip_header=1, encoding="utf-8", dtype=float), data = np.genfromtxt('triple_jump_records2.txt', delimiter='\t', skip_header=True, encoding="utf-8", dtype=float), data = np.genfromtxt('triple_jump_records2.txt', delimiter=',', skip_header=True, encoding="utf-8", dtype=float), data = np.genfromtxt('triple_jump_records2.txt', delimiter='\t', skip_header=1, encoding="utf-8", dtype=float), data = np.genfromtxt('triple_jump_records2.txt', delimiter=',', skip_header=1, encoding="utf-8", dtype=float), data = np.genfromtxt('triple_jump_records2', delimiter='\t', skip_header=1, encoding="utf-8", dtype=float), data = np.genfromtxt('triple_jump_records2', delimiter=',', skip_header=1, encoding="utf-8", dtype=float)] rank = Answer 2 Question 1[select: , data[:, 0], data[0, :], data[:, 1], data[1, :], data[:, 2], data[2, :]] distance = Answer 3 Question 1[select: , data[:, 0], data[0, :], data[:, 1], data[1, :], data[:, 2], data[2, :]] wind_speed = Answer 4 Question 1[select: , data[:, 0], data[0, :], data[:, 1], data[1, :], data[:, 2], data[2, :]]max_wind_index = np.argmax(wind_speed)max_wind_rank = rank[max_wind_index]max_wind_distance = distance[max_wind_index]print(f"Rank with highest wind speed: {max_wind_rank:.0f}")print(f"Distance with highest wind speed: {max_wind_distance:.2f} m")Then, fill in the outputs that would be printed by the script above: Outputs:Rank with highest wind speed: Answer 5 Question 1[input] Distance with highest wind speed: Answer 6 Question 1[input] mMultiple fill-in-the-blank

Log in for full answers

We've collected over 50,000 authentic original questions and detailed explanations from around the globe. Log in now and get instant access to the answers!

More Practical Tools for Students Powered by AI Study Helper

Join us and instantly unlock extensive past papers & exclusive solutions to get a head start on your studies!