Skip to content

Commit

Permalink
feature_datasaurus produce image without color usage warning message D…
Browse files Browse the repository at this point in the history
…istrictDataLabs#1299 (DistrictDataLabs#1301)

* updated color param in scatter function
  • Loading branch information
clmangham authored Mar 7, 2023
1 parent da26d1e commit 22913a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yellowbrick/datasaurus.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 22913a7

Please sign in to comment.