2016-04-14 203 views
8

默認情況下jupyter筆記本內嵌圖表顯示爲PNG,例如:jupyter筆記本內嵌地塊爲SVG

import matplotlib.pyplot as plt 
%matplotlib inline 
plt.plot() 

如何配置jupyter筆記本顯示matplotlib直列地塊爲SVG?

回答

24

%config InlineBackend.figure_format = 'svg'有竅門。一個最小的例子是:

import matplotlib.pyplot as plt 
%matplotlib inline 
%config InlineBackend.figure_format = 'svg' 
plt.plot() 
+2

你知道,如果用'%matplotlib notebook'時,有一個類似的修復?我似乎無法找到一種方法來使數字顯示爲質量 –

+0

對不起,不,我不知道。 –

+1

有一個[新問題](https://stackoverflow.com/questions/45466947/include-output-from-matplotlib-notebook-backend-as-svg-in-ipynb)被問及@markjay的評論,希望有人會盡快回答。 – ImportanceOfBeingErnest