You can create a basic line chart using the plot() function in Pandas.
Here's an example:
import pandas as pd
import matplotlib.pyplot as plt
# Sample data
data = {'Year': [2010, 2011, 2012, 2013, 2014],
'Revenue': [50000, 55000, 60000, 65000, 70000]}
# Create a DataFrame
df = pd.DataFrame(data)
# Plot a line chart
df.plot(x='Year', y='Revenue', title='Revenue Over Time')
plt.xlabel('Year')
plt.ylabel('Revenue ($)')
plt.show()