Skip to content

matplotlib title() not showing

Why is the first title not shown, but the second title is? And how should I fix this? I suspect the problem is that plt.title(‘PSBA mRNA’) resets the title before the previous one is shown. But adding plt.show() after plt.title(‘Viral_load’) introduces other problems with the plots. QQ…

Tkinter passing parameters

I have 2 .py files in the same project, one called namer and the other called GuiApp In namer is GuiApp holds: I don’t understand why when i type something into txt, it is not returned as part of the nameit function. Any ideas please as im new to Tkinter? Answer When the command of a button has parenthe…