It starts from the row number 3
We currently do not have PowerBi, hence i am going for the Matplotlib which can extract the saved data from EXCEL and then plot it with Matplotlib
Here's the code which i have written, and i encounter a output wherein i am unable to proceed with any changes because of confusion:
import matplotlib.pyplot as plt
import xlrd
import pandas as pd
df = pd.read_excel('C:\CATS.xls', skiprows = 3)
x = plt.plot(['Mack Trucks'], ['Volvo Construction Equipment'], ['Volvo Trucks'])
plt.ylabel('VOLVO GROUP')
plt.show()
Request anyone who can help me here, i need the company brands to be in Y - AXIS and print the remaining values in the X-axis
The one provided by me is only my data, similarly i will have other 10 to 12 team mate data in it.
df.plot()