Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to specify symbol in matplotlib

Specify coordinate then symbol then color
plt.plot(xCoord, yCoord, "*", "black")
Specify coordinate then shorthand for symbal and color. * is symbo
and k is the color black
plt.plot(xCoord, yCoord, "*k")
 
PREVIOUS NEXT
Tagged: #symbol #matplotlib
ADD COMMENT
Topic
Name
5+6 =