We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6d72b8 commit 62a23d9Copy full SHA for 62a23d9
iris_visualization.py
@@ -0,0 +1,9 @@
1
+import seaborn as sns
2
+import matplotlib.pyplot as plt
3
+
4
+# load the iris dataset
5
+iris = sns.load_dataset("iris")
6
7
+# visualize the relationship between the 4 features for each of three species of Iris
8
+sns.pairplot(iris, hue='species', height=1.5)
9
+plt.show()
0 commit comments