Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

matplotlib orange line

# credit to the Stack Overflow user in the source link
# choose one of these three possibilities

plt.plot(x, z3, '--', color='orange')           % String colorspec
plt.plot(x, z3, '--', color='#FFA500')          % Hex colorspec
plt.plot(x, z3, '--', color=[1.0, 0.5, 0.25])   % RGB colorspec
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #matplotlib #orange #line
ADD COMMENT
Topic
Name
4+4 =