matplotlib– tag –
-
matplotlib
Matplotlib | Plot zoomed and overall graphs (inset_axes, indicate_inset_zoom)
You need an overall view of the graph, but you may want a zoomed-in view of an area. You can create a zoomed-in view by changing the axis scales, but it is n... -
matplotlib
Matplotlib | Show formulas in TeX font (mathtext)
Are you wondering how to display a formula on a graph? You need to show formulas to improve the interpretation of your data and the readability of your graph... -
matplotlib
Matplotlib | Multiple graphs! Placement, Size (Gridspec)
Sometimes it is easier to understand multiple graphs if they are displayed together. This article explains how to display multiple graphs in a single window ... -
matplotlib
Matplotlib | Box-and-Whisker Plot. Display mean, median, outliers
You may want to grasp the trend or variation of your data at a glance, but are at a loss as to how to draw a box-and-whisker diagram or how to display its el... -
matplotlib
Matplotlib | Plot graphs in real time (pause, remove)
We often want to visualize data in real-time, for example, to monitor numerical experiments or to see how numerical data from machine learning or deep learni... -
matplotlib
Matplotlib | Pie chart! Legend, Percentage, Labels (pie)
Pie charts are often used to show proportions of data. This article explains how to plot a pie chart in Matplotlib. In addition, detailed instructions are pr... -
matplotlib
Matplotlib | Error bars on line charts and scatter plots (errorbar)
Experimental data are subject to basic errors, which are indicated by error bars on the graph. Python can easily display a graph with error bars with little ... -
matplotlib
Matplotlib | How to set up a graph style at once (rcParams)
When you create a graph in Matplotlib in Python, do you have a hard time getting the graph appearance right every time? Actually, Matplotlib provides a libra... -
matplotlib
Matplotlib | How to increase the Y-axis to two or three and add a legend (twinx)
Do you feel unsure how to merge multiple Y-axes into a single graph to see the complex relationships in your data? You may also not know how to add a legend ...