While updating my packages I've noticed that there is a package named "matplotlib-base". I couldn't figure out what the difference to "matplotlib" is, neither on the official website nor here on Stack Overflow, and I also couldn't find any repository to compare the code. Any ideas?
It provides a user to visualize data using a variety of different types of plots to make data understandable. You can use, these different types of plots (scatterplots, histograms, bar charts, errorcharts, boxplots, etc.) by writing few lines of code in python.
Matplotlib is a plotting library. It relies on some backend to actually render the plots. The default backend is the agg backend. This backend only renders PNGs.
The best use of Matplotlib differs depending on how you are using it; roughly, the three applicable contexts are using Matplotlib in a script, in an IPython terminal, or in an IPython notebook.
The packages are similar, but differ in their dependencies: matplotlib
depends on matplotlib-base
and pyqt
. Therefore installing matplotlib
will also pull in the qt stack, while installing matplotlib-base
does not. Users that do not need qt backends and prefer a slim installation will prefer matplotlib-base
over matplotlib
.
See also: https://conda-forge.org/docs/maintainer/knowledge_base.html#matplotlib
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With