Skip to content

Tag: matplotlib

Changing the border width of a plot

I have a script to create an easy plot, but I would like to change the border width because it is a little bit transparent. How can I do this? With images is clearer the my problem Answer I changed the size of your plot because it was way too huge for me to work with, just FYI. What you

Python, plot matrix diagonal elements

I have an 120×70 matrix of which I want to graph diagonal lines. for ease of typing here, I will explain my problem with a smaller 4×4 matrix. index 2020 2021 2022 2023 0 1 2 5 7 1 3 5 8 10 0 1 2 5 3 1 3 5 8 4 I now want to graph for example

Mark selected pixels in an image with circle

I have an image, and I have to mark pixels whose intensity value is less than threshold value with a circle. How do you do this, Scatter plot wont work as we need two input. Help in this regard is appreciated. Answer You can use the Circle patch function from matplotlib (see doc here). Here is an example insp…