Write a Python program to draw a line plot of the financial dataof ABC Inc. from March to June 2018. Sample Financial data (to besaved in f_data.csv):
Month,Open,High,Low,Close 03,774.25,776.065002,769.5,772.55999804,776.030029,778.710022,772.890015,776.42999305,779.309998,782.070007,775.650024,776.46997106,779,780.47998,775.539978,776.85998507,779.659973,779.659973,770.75,775.080017
First save the data in the f_data.csv (make sure the .csv fileis in the same directory as the .py file or provide the full pathto your .csv file in the code)
Write a python program to plot above data set. Individualcolumns: Open, High, Low, and Close should be depicted asindividual lines in your line graph (month should be your x axis).You must use different colors for line graphs, show a legend, labelx and y axis, and give a suitable title for the plot.
Expert Answer
Answer to Write a Python program to draw a line plot of the financial data of ABC Inc. from March to June 2018. Sample Financial d…