Matplotlib and Seaborn are popular libraries for data visualization in Python. Here's an example using Seaborn to create a scatter plot:
import seaborn as sns
import matplotlib.pyplot as plt
# Create a scatter plot
sns.scatterplot(x='age', y='income', data=data)
plt.title('Age vs. Income')
plt.show()