About 8,900,000 results
Open links in new tab
  1. python - Named colors in matplotlib - Stack Overflow

    What named colors are available in matplotlib for use in plots? I can find a list on the matplotlib documentation that claims that these are the only names: b: blue g: green r: red c: cyan m: mag...

  2. python - How to get default blue colour of …

    Nov 2, 2017 · How do I get the shade of blue that is used as default in matplotlib.pyplot.scatter? When giving the keyword argument c='b', it gives a darker shade of blue. In this …

  3. How do I print colored output with Python 3? - Stack Overflow

    Sep 13, 2016 · I have a simple print statement: print ('hello friends') I would like the output to be blue in the terminal. How can I accomplish this with Python3?

  4. python - How do I print colored text to the terminal? - Stack …

    Apr 25, 2019 · I'll try and clarify a bit: Colorama aims to let Python programs print colored terminal text on all platforms, using the same ANSI codes as described in many other answers on this …

  5. plot - Color map to shades of blue - python - Stack Overflow

    Oct 11, 2018 · Color map to shades of blue - python Asked 7 years, 2 months ago Modified 7 years, 2 months ago Viewed 15k times

  6. python - Visual Studio Code does not show variable color or …

    Apr 20, 2022 · Recently while using Visual Studio code I noticed that the variable colors don't turn blue like they used to, and it does not show me problems in the code anymore.

  7. python - Create own colormap using matplotlib and plot color …

    I have the following problem, I want to create my own colormap (red-mix-violet-mix-blue) that maps to values between -2 and +2 and want to use it to color points in my plot.

  8. python - Change specific RGB color pixels to another color, in …

    I would like to change a single color with Python. If a fast solution with PIL exists, I would prefer this solution. At the moment, I use convert -background black -opaque '#939393' MyImage.png

  9. python - matplotlib bwr-colormap, always centered on zero

    Aug 26, 2014 · I want to use the bwr-colormap (blue -> white - red) such that zero is always color-coded in white. -1 should be colorcoded in the darkest possible blue and +1 should be …

  10. python - Plotting different colors in matplotlib - Stack Overflow

    Suppose I have a for loop and I want to plot points in different colors: for i in range(5): plt.plot(x,y,col=i) How do I automatically change colors in the for loop?