Answers for "how to specify symbol in matplotlib"

0

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")
Posted by: Guest on July-02-2021

Code answers related to "how to specify symbol in matplotlib"

Browse Popular Code Answers by Language