8
默認情況下jupyter筆記本內嵌圖表顯示爲PNG,例如:jupyter筆記本內嵌地塊爲SVG
import matplotlib.pyplot as plt
%matplotlib inline
plt.plot()
如何配置jupyter筆記本顯示matplotlib直列地塊爲SVG?
默認情況下jupyter筆記本內嵌圖表顯示爲PNG,例如:jupyter筆記本內嵌地塊爲SVG
import matplotlib.pyplot as plt
%matplotlib inline
plt.plot()
如何配置jupyter筆記本顯示matplotlib直列地塊爲SVG?
%config InlineBackend.figure_format = 'svg'
有竅門。一個最小的例子是:
import matplotlib.pyplot as plt
%matplotlib inline
%config InlineBackend.figure_format = 'svg'
plt.plot()
你知道,如果用'%matplotlib notebook'時,有一個類似的修復?我似乎無法找到一種方法來使數字顯示爲質量 –
對不起,不,我不知道。 –
有一個[新問題](https://stackoverflow.com/questions/45466947/include-output-from-matplotlib-notebook-backend-as-svg-in-ipynb)被問及@markjay的評論,希望有人會盡快回答。 – ImportanceOfBeingErnest