In PyCharm in the Console, when the debugger is running, the following line is displayed Backend TkAgg is interactive backend. Turning interactive mode on. Backend TkAgg is interactive backend. Turning interactive mode on. In the Internet they write that it is connected with Matplotlib , but there are no specific proposals. What does this mean and how to get rid of it?
|
1 answer
This is a reminder that this is a TkAgg interactive backend, which is quite convenient. To activate this feature you need to run the following commands in Console PyCharm:
from matplotlib import pylab import numpy as np %pylab Then you can experiment
x = np.random.randn(10000) plot(x.cumsum()) or
x = np.random.randn(10000) hist(x, 100) - Your answer did not check for performance (not relevant anymore), but thanks, maybe someone else will come in handy. - EmptyMan
|