Greeting for new year!
I have a question regarding saving multiple plots (generated by different python files) to a single PDF.
I have three python files P1,P2,P2. Each file generates a plot when I call function. F1,F2,F3 are functions of those files.
When I execute below piece of code, I see three plots as expected. I want to combine these plots and save them in one single PDF.
Any suggestions will be helpful.
Thank you.
import P1
import P2
import P3
P1.F1()
P2.F2()
P3.F3()