Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Data Visualization with Matplotlib and Seaborn filter_list
Author
Message
Data Visualization with Matplotlib and Seaborn #1
import matplotlib.pyplot as plt
import seaborn as sns

# Create a scatter plot
data = sns.load_dataset('iris')
sns.scatterplot(x='sepal_length', y='sepal_width', hue='species', data=data)
plt.title('Sepal Length vs Sepal Width')
plt.show()

Reply







Users browsing this thread: 1 Guest(s)