Answers for "matplotlib random color"

0

matplotlib random color

import random

# note that matplotlib requires 2d array for rbg colors
rgb = [[random.random(), random.random(), random.random()]]
plt.scatter(x, y, c=rgb)
Posted by: Guest on May-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language