Search
 
SCRIPT & CODE EXAMPLE
 

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
Comment

PREVIOUS NEXT
Code Example
Python :: install a lower version of python using conda 
Python :: kruskal python implementation 
Python :: python random randint string 
Python :: how to run same function on multiple threads in pyhton 
Python :: extends template django 
Python :: np.zeros 
Python :: join dataframe pandas by column 
Python :: django include 
Python :: python code with sigma 
Python :: findout not common values between two data frames 
Python :: python pause function 
Python :: how to power in python 
Python :: python check if dataframe series contains string 
Python :: python format 001 
Python :: joining two lists in python 
Python :: data normalization python 
Python :: .launch.py file in ros2 
Python :: read file csv in python 
Python :: index a dictionary python 
Python :: read a file python 
Python :: pip install covid 
Python :: pass a list to a function in python 
Python :: how to dump a database using manage.py 
Python :: def extract_title(input_df): 
Python :: python filter dict 
Python :: python create a grid of points 
Python :: pandas merge two columns from different dataframes 
Python :: spark to pandas 
Python :: enumerate string pythonm 
Python :: input in python 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =