Using Python!!!
There is afile ‘StationData.csv’. This file contains stream monitoring datafor five years, including observation day, month and year, as wellas air temperature and stream discharge data.
Write a Pythonprogram that reads in this data, and reports the average airtemperature and stream discharge for 1) each year, 2) each monthacross years (e.g. the average for February across all fiveyears).
For output,report the summary statistics. Additionally, generate a figure withtwo charts using the original daily data: 1) air temperature as afunction of time, and 2) stream discharge as a function of time.Stack the two charts vertically in the figure.
Answer
OR
OR