In: Computer Science
Please answer these questions Data Processing and Analysis using python. Thank you
Explain what does each of the following functions do:
1. numpy.mean()
2. pandas.read_csv()
3. matplotlib.pyplot.plot()
Each of the following function do :
1. numpy.mean()
In python, this function is to calculate the arithmetic mean or average of the given data or the array elements
Example :
OUTPUT OF ABOVE CODE :
2. pandas.read_csv()
It is a pandas function , which is used to read csv files and do operations on it.
SYNTAX TO USE THIS FUNCTION :
3. matplotlib.pyplot.plot()
Matplotlib is a library in Python and by which various plots which can be used in Pyplot. Some of the plots are Line Plot, Contour, Histogram, Scatter, 3D Plot, etc.