import pandas as pd
import matplotlib.pyplot as plt
# Load market share data from a CSV file
data = pd.read_csv('https://raw.githubusercontent.com/patelmanishv/Sem4Data/main/AXISBANK.csv')
# Convert the 'date' column to a datetime format
data['Date'] = pd.to_datetime(data['Date'])
# Set the 'date' column as the index
data.set_index('Date', inplace=True)
# Create an area plot of market share by company
data.plot(kind='area', stacked=True)
# Add axis labels and a title
plt.xlabel('Date')
plt.ylabel('Market Share')
plt.title('Market Share by Company')
# Show the plot
plt.show()