Statistiken sind in Kreisen beliebt, aber ich studiere Datenwissenschaft mit Python, obwohl es eine Wendung ist, weil jeder R verwendet. (Ich möchte R bald berühren)
In der Zwischenzeit stieß ich auf das Problem, dass matplotlib nicht inline erweitert wurde, und machte mir eine Notiz.
Es scheint, dass es nicht inline erweitert wird, es sei denn, Sie führen den folgenden Code am Anfang der Notiz aus.
%matplotlib inline
Before
In [48] : tz_counts[:10].plot(kind='barh', rot=0)
Out [48] : <matplotlib.axes._subplots.AxesSubplot at 0x18dd7d8c358>
After
In [49] : %matplotlib inline
In [50] : tz_counts[:10].plot(kind='barh', rot=0)
Out [50] : <matplotlib.axes._subplots.AxesSubplot at 0x18dd7d8c358>
Es wird angezeigt! Wir haben es geschafft, Tae-chan!
Recommended Posts