If a program already has numerous matplotlib plot functions, what is the quickest way to convert them all to a way where all the plots can be produced as hard images *when class attributes are doing the plotting*? (with minimal modification of code)
-
Follow-up to I'm getting issues like File "http://DoublePendulum2Proj3.py", line 147, in <module> p.poincare() File "http://DoublePendulum2Proj3.py", line 122, in poincare fig.savefig('test2.png') NameError: global name 'fig' is not defined I've initialized self.fig = plt.figure() over in the class initialization and then try to call fig.savefig('test.png') within one of the class attributes like "def plot(self):"
-
Answer:
You should call self.fig.savefig('test.png'). fig is a member variable.
Julius Bier Kirkegaard at Quora Visit the source
Other answers
plt.savefig() can be used. Since python is object oriented script langugage, you may need to know the self objective must be appended in front of member variables. It was also confused to me previously and sometimes I am still confusing to use this style. I think if you are using Python continuously, it will be easy and autonomous to consider to append the self object in forent of the member functions.
James Sungjin Kim
Related Q & A:
- What's the quickest way to lose 30lbs?Best solution by Yahoo! Answers
- What's the quickest way to solve a Rubik's Cube?Best solution by Yahoo! Answers
- Is there a way where u can send someone an email using hotmail and adding a small picture in the?Best solution by Yahoo! Answers
- What is the quickest way to get rid of razor burn?Best solution by Yahoo! Answers
- What is the quickest way to get rid of a scrape?Best solution by answers.yahoo.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.