ipython notebook pylab inline - matplotlib.pyplot - Anzeige-Grundstück mit scrollbar?

Ich bin mit ipython notebook --pylab inline

import matplotlib.pyplot as plt
import pandas as pd
......
plt.figsize(14,8)
ax1=plt.subplot(311)
#data is a pandas data frame with timeseries stock data
# this plots the data
data.plot(ax=ax1)

Diese zeigt ein Diagramm der Lager-Daten aber seine alle auf einmal angezeigt.
Ich möchte die Anzeige nur Teilbereich der Daten und eine Rollleiste zu Steuern, welcher Bereich
Wie mache ich es so, dass es funktioniert mit der inline-Anzeige von plots.

Schreibe einen Kommentar