Answers for "plt.plot color options"

3

change graph colors python matplotlib

plt.plot([values], color='color')
Posted by: Guest on May-09-2021
0

axes color python

ax.spines['bottom'].set_color('#dddddd')
ax.spines['top'].set_color('#dddddd') 
ax.spines['right'].set_color('red')
ax.spines['left'].set_color('red')
Posted by: Guest on September-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language