About 50 results
Open links in new tab
  1. Scaling axis for a scatter plot in matlibplot in python

    Dec 13, 2014 · I am working with data visualization using matlibplot. My plot has a total of 6502 data values and is working fine, but the values are close and dense. For example my y axis values ranges …

  2. python - How do I change the size of figures drawn with Matplotlib ...

    #!/usr/bin/env python """ This is a small demo file that helps teach how to adjust figure sizes for matplotlib """ import matplotlib print "using MPL version:", matplotlib.__version__ …

  3. Fill area under curve in matlibplot python on log scale

    Fill area under curve in matlibplot python on log scale Asked 13 years, 11 months ago Modified 13 years, 2 months ago Viewed 22k times

  4. Changing the tick frequency on the x or y axis - Stack Overflow

    9 Pure Python Implementation Below's a pure python implementation of the desired functionality that handles any numeric series (int or float) with positive, negative, or mixed values and allows for the …

  5. python - When to use cla (), clf () or close () for clearing a plot ...

    Oct 2, 2023 · Matplotlib offers these functions: cla() # Clear axis clf() # Clear figure close() # Close a figure window When should I use each function and what exactly does it do?

  6. python - Typing Greek letters etc. in plots - Stack Overflow

    Dec 4, 2016 · 17 Python 3.x: small greek letters are coded from 945 to 969 so,alpha is chr(945), omega is chr(969) so just type

  7. How to draw a rectangular on subplotted figure using matlibplot in …

    Jul 20, 2020 · I successfully draw a subplot of the histogram figure contains three subplots as shown in the figure below. The question is that I need to draw dashed rectangular covers the three subplots at …

  8. python - how to import matplotlib.pyplot - Stack Overflow

    Sep 26, 2013 · I didn't understand the problem, when I run import inspect; inspect, I get following output <module 'inspect' from 'C:\Python27\lib\inspect.pyc'>, what does it mean and how to I still import …

  9. Python matlibplot: visualizing a matrix of integers (-1, 0 or 1) with ...

    May 7, 2019 · Python matlibplot: visualizing a matrix of integers (-1, 0 or 1) with circles (same radius, different color) Asked 6 years, 9 months ago Modified 6 years, 9 months ago Viewed 1k times

  10. python - Display image with a zoom = 1 with Matplotlib imshow () …

    Nov 8, 2011 · I want to display an image (say 800x800) with Matplotlib.pyplot imshow() function but I want to display it so that one pixel of the image occupies one pixel on the screen (zoom factor = 1, …