Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

plt.scatter background color

import matplotlib.pyplot as plt

a = random(100)*10
b = range(100)
fig = plt.figure(1)
ax = fig.add_subplot(111, axisbg='black')
ax.scatter(a,b)
fig.canvas.draw()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #background #color
ADD COMMENT
Topic
Name
5+2 =