You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Working with the following system
Ubuntu 22.04
Python 3.9
Spyder 5.3.3
quantstats 0.0.62
I'm able to produce plots that send to the inline Plots tab, but when I change the matplotlib backend to qt to allow plots to pop out, nothing displays.
import quantstats as qs
%matplotlib inline
# displays in Plots tab in Spyder
stock = qs.utils.download_returns('SPY')
qs.plots.returns(stock)
# doesn't show anything
%matplotlib qt
qs.plots.returns(stock)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Working with the following system
Ubuntu 22.04
Python 3.9
Spyder 5.3.3
quantstats 0.0.62
I'm able to produce plots that send to the inline Plots tab, but when I change the matplotlib backend to qt to allow plots to pop out, nothing displays.
Why would this be and what am I missing?
Beta Was this translation helpful? Give feedback.
All reactions