From 22913a7de24ad1647d0869c656e8c4e66f48291a Mon Sep 17 00:00:00 2001 From: "Camaron L. Mangham" Date: Tue, 7 Mar 2023 16:55:49 -0500 Subject: [PATCH] feature_datasaurus produce image without color usage warning message #1299 (#1301) * updated color param in scatter function --- yellowbrick/datasaurus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yellowbrick/datasaurus.py b/yellowbrick/datasaurus.py index 68c45a433..70d7b466f 100644 --- a/yellowbrick/datasaurus.py +++ b/yellowbrick/datasaurus.py @@ -1218,7 +1218,7 @@ def datasaurus(): y = arr[1] # Draw the points in the scatter plot - ax.scatter(x, y, c=color) + ax.scatter(x, y, color=color) # Set the X and Y limits ax.set_xlim(0, 100)