Explore
Connect
Documentation
Snippets
Log in
Sign up
Example
1
2
3
4
# Plot the red and blue points
plt.scatter(red_points[:,
0
], red_points[:,
1
], color=
'red'
)
plt.scatter(blue_points[:,
0
], blue_points[:,
1
], color=
'blue'
)
Enter to Rename, Shift+Enter to Preview
Run