

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Display two Sympy plots as one Matplotlib plot (add the second plot to the first)
To display two sympy plots as one Matplotlib plot, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Transform strings into instances of :class:'Symbol' class.
- Plot a function of a single variable as a curve.
- Use the extend method to add all the series of plot2 (p2) in plot1 (p1).
- To display the figure, use show() method.
Example
from sympy import symbols from sympy.plotting import plot from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = symbols('x') p1 = plot(x*x, show=False) p2 = plot(x, show=False) p1.extend(p2) p1.show()
Output
- Related Questions & Answers
- How to merge two existing Matplotlib plots into one plot?
- How to add a second X-axis at the bottom of the first one in Matplotlib?
- Plot animated text on the plot in Matplotlib
- How to plot half or quarter polar plots in Matplotlib?
- How to plot the lines first and points last in Matplotlib?
- How to plot the difference of two distributions in Matplotlib?
- How can I plot two different spaced time series on one same plot in Python Matplotlib?
- Add minor gridlines to Matplotlib plot using Seaborn
- How to stop par(mfrow) to create multiple plots in one plot window and create only one plot in R?
- How to plot one single data point in Matplotlib?
- What is the difference between drawing plots using plot, axes or figure in matplotlib?
- How to add text inside a plot in Matplotlib?
- How to a plot stem plot in Matplotlib Python?
- How to plot two Pandas time series on the same plot with legends and secondary Y-axis in Matplotlib?
- How to plot matplotlib contour?
Advertisements