Plotting with matplotlib¶
Note
We intend to build more plotting integration with matplotlib as time goes on.
We use the standard convention for referencing the matplotlib API:
In [1221]: import matplotlib.pyplot as plt
Basic plotting: plot¶
The plot method on Series and DataFrame is just a simple wrapper around plt.plot:
In [1222]: ts = Series(randn(1000), index=date_range('1/1/2000', periods=1000))
In [1223]: ts = ts.cumsum()
In [1224]: ts.plot()
Out[1224]: <matplotlib.axes.AxesSubplot at 0x109e77110>
If the index consists of dates, it calls gcf().autofmt_xdate() to try to format the x-axis nicely as per above. The method takes a number of arguments for controlling the look of the plot:
In [1225]: plt.figure(); ts.plot(style='k--', label='Series'); plt.legend()
Out[1225]: <matplotlib.legend.Legend at 0x11d7b81d0>
On DataFrame, plot is a convenience to plot all of the columns with labels:
In [1226]: df = DataFrame(randn(1000, 4), index=ts.index,
......: columns=['A', 'B', 'C', 'D'])
......:
In [1227]: df = df.cumsum()
In [1228]: plt.figure(); df.plot(); plt.legend(loc='best')
Out[1228]: <matplotlib.legend.Legend at 0x11f0ba390>
You may set the legend argument to False to hide the legend, which is shown by default.
In [1229]: df.plot(legend=False)
Out[1229]: <matplotlib.axes.AxesSubplot at 0x11f05c290>
Some other options are available, like plotting each Series on a different axis:
In [1230]: df.plot(subplots=True, figsize=(8, 8)); plt.legend(loc='best')
Out[1230]: <matplotlib.legend.Legend at 0x11f07bd10>
You may pass logy to get a log-scale Y axis.
In [1231]: plt.figure();
In [1231]: ts = Series(randn(1000), index=date_range('1/1/2000', periods=1000))
In [1232]: ts = np.exp(ts.cumsum())
In [1233]: ts.plot(logy=True)
Out[1233]: <matplotlib.axes.AxesSubplot at 0x11f07bc10>
You can plot one column versus another using the x and y keywords in DataFrame.plot:
In [1234]: plt.figure()
Out[1234]: <matplotlib.figure.Figure at 0x11f2408d0>
In [1235]: df3 = DataFrame(np.random.randn(1000, 2), columns=['B', 'C']).cumsum()
In [1236]: df3['A'] = Series(range(len(df)))
In [1237]: df3.plot(x='A', y='B')
Out[1237]: <matplotlib.axes.AxesSubplot at 0x121257910>
Plotting on a Secondary Y-axis¶
To plot data on a secondary y-axis, use the secondary_y keyword:
In [1238]: plt.figure()
Out[1238]: <matplotlib.figure.Figure at 0x120b2ec90>
In [1239]: df.A.plot()
Out[1239]: <matplotlib.axes.AxesSubplot at 0x1216ff090>
In [1240]: df.B.plot(secondary_y=True, style='g')
Out[1240]: <matplotlib.axes.AxesSubplot at 0x1216ff090>
Selective Plotting on Secondary Y-axis¶
To plot some columns in a DataFrame, give the column names to the secondary_y keyword:
In [1241]: plt.figure()
Out[1241]: <matplotlib.figure.Figure at 0x12128df50>
In [1242]: df.plot(secondary_y=['A', 'B'])
Out[1242]: <matplotlib.axes.AxesSubplot at 0x121707510>
Note that the columns plotted on the secondary y-axis is automatically marked with “(right)” in the legend. To turn off the automatic marking, use the mark_right=False keyword:
In [1243]: plt.figure()
Out[1243]: <matplotlib.figure.Figure at 0x121600e10>
In [1244]: df.plot(secondary_y=['A', 'B'], mark_right=False)
Out[1244]: <matplotlib.axes.AxesSubplot at 0x120acec10>
Targeting different subplots¶
You can pass an ax argument to Series.plot to plot on a particular axis:
In [1245]: fig, axes = plt.subplots(nrows=2, ncols=2, figsize=(8, 5))
In [1246]: df['A'].plot(ax=axes[0,0]); axes[0,0].set_title('A')
Out[1246]: <matplotlib.text.Text at 0x121698d50>
In [1247]: df['B'].plot(ax=axes[0,1]); axes[0,1].set_title('B')
Out[1247]: <matplotlib.text.Text at 0x1216bea50>
In [1248]: df['C'].plot(ax=axes[1,0]); axes[1,0].set_title('C')
Out[1248]: <matplotlib.text.Text at 0x12169ee10>
In [1249]: df['D'].plot(ax=axes[1,1]); axes[1,1].set_title('D')
Out[1249]: <matplotlib.text.Text at 0x1217a92d0>
Other plotting features¶
Bar plots¶
For labeled, non-time series data, you may wish to produce a bar plot:
In [1250]: plt.figure();
In [1250]: df.ix[5].plot(kind='bar'); plt.axhline(0, color='k')
Out[1250]: <matplotlib.lines.Line2D at 0x122964ed0>
Calling a DataFrame’s plot method with kind='bar' produces a multiple bar plot:
In [1251]: df2 = DataFrame(np.random.rand(10, 4), columns=['a', 'b', 'c', 'd'])
In [1252]: df2.plot(kind='bar');
To produce a stacked bar plot, pass stacked=True:
In [1252]: df2.plot(kind='bar', stacked=True);
To get horizontal bar plots, pass kind='barh':
In [1252]: df2.plot(kind='barh', stacked=True);
Histograms¶
In [1252]: plt.figure();
In [1252]: df['A'].diff().hist()
Out[1252]: <matplotlib.axes.AxesSubplot at 0x1229d5550>
For a DataFrame, hist plots the histograms of the columns on multiple subplots:
In [1253]: plt.figure()
Out[1253]: <matplotlib.figure.Figure at 0x122faff50>
In [1254]: df.diff().hist(color='k', alpha=0.5, bins=50)
Out[1254]:
array([[Axes(0.125,0.552174;0.336957x0.347826),
Axes(0.563043,0.552174;0.336957x0.347826)],
[Axes(0.125,0.1;0.336957x0.347826),
Axes(0.563043,0.1;0.336957x0.347826)]], dtype=object)
Box-Plotting¶
DataFrame has a boxplot method which allows you to visualize the distribution of values within each column.
For instance, here is a boxplot representing five trials of 10 observations of a uniform random variable on [0,1).
In [1255]: df = DataFrame(np.random.rand(10,5))
In [1256]: plt.figure();
In [1256]: bp = df.boxplot()
You can create a stratified boxplot using the by keyword argument to create groupings. For instance,
In [1257]: df = DataFrame(np.random.rand(10,2), columns=['Col1', 'Col2'] )
In [1258]: df['X'] = Series(['A','A','A','A','A','B','B','B','B','B'])
In [1259]: plt.figure();
In [1259]: bp = df.boxplot(by='X')
You can also pass a subset of columns to plot, as well as group by multiple columns:
In [1260]: df = DataFrame(np.random.rand(10,3), columns=['Col1', 'Col2', 'Col3'])
In [1261]: df['X'] = Series(['A','A','A','A','A','B','B','B','B','B'])
In [1262]: df['Y'] = Series(['A','B','A','B','A','B','A','B','A','B'])
In [1263]: plt.figure();
In [1263]: bp = df.boxplot(column=['Col1','Col2'], by=['X','Y'])
Scatter plot matrix¶
- New in 0.7.3. You can create a scatter plot matrix using the
- scatter_matrix method in pandas.tools.plotting:
In [1264]: from pandas.tools.plotting import scatter_matrix
In [1265]: df = DataFrame(np.random.randn(1000, 4), columns=['a', 'b', 'c', 'd'])
In [1266]: scatter_matrix(df, alpha=0.2, figsize=(8, 8), diagonal='kde')
Out[1266]:
array([[Axes(0.125,0.7;0.19375x0.2), Axes(0.31875,0.7;0.19375x0.2),
Axes(0.5125,0.7;0.19375x0.2), Axes(0.70625,0.7;0.19375x0.2)],
[Axes(0.125,0.5;0.19375x0.2), Axes(0.31875,0.5;0.19375x0.2),
Axes(0.5125,0.5;0.19375x0.2), Axes(0.70625,0.5;0.19375x0.2)],
[Axes(0.125,0.3;0.19375x0.2), Axes(0.31875,0.3;0.19375x0.2),
Axes(0.5125,0.3;0.19375x0.2), Axes(0.70625,0.3;0.19375x0.2)],
[Axes(0.125,0.1;0.19375x0.2), Axes(0.31875,0.1;0.19375x0.2),
Axes(0.5125,0.1;0.19375x0.2), Axes(0.70625,0.1;0.19375x0.2)]], dtype=object)
New in 0.8.0 You can create density plots using the Series/DataFrame.plot and setting kind=’kde’:
In [1267]: ser = Series(np.random.randn(1000))
In [1268]: ser.plot(kind='kde')
Out[1268]: <matplotlib.axes.AxesSubplot at 0x12871b710>
Andrews Curves¶
Andrews curves allow one to plot multivariate data as a large number of curves that are created using the attributes of samples as coefficients for Fourier series. By coloring these curves differently for each class it is possible to visualize data clustering. Curves belonging to samples of the same class will usually be closer together and form larger structures.
In [1269]: from pandas import read_csv
In [1270]: from pandas.tools.plotting import andrews_curves
In [1271]: data = read_csv('data/iris.data')
In [1272]: plt.figure()
Out[1272]: <matplotlib.figure.Figure at 0x126d68f90>
In [1273]: andrews_curves(data, 'Name')
Out[1273]: <matplotlib.axes.AxesSubplot at 0x128761650>
Parallel Coordinates¶
Parallel coordinates is a plotting technique for plotting multivariate data. It allows one to see clusters in data and to estimate other statistics visually. Using parallel coordinates points are represented as connected line segments. Each vertical line represents one attribute. One set of connected line segments represents one data point. Points that tend to cluster will appear closer together.
In [1274]: from pandas import read_csv
In [1275]: from pandas.tools.plotting import parallel_coordinates
In [1276]: data = read_csv('data/iris.data')
In [1277]: plt.figure()
Out[1277]: <matplotlib.figure.Figure at 0x128751490>
In [1278]: parallel_coordinates(data, 'Name')
Out[1278]: <matplotlib.axes.AxesSubplot at 0x1296cd9d0>
Lag Plot¶
Lag plots are used to check if a data set or time series is random. Random data should not exhibit any structure in the lag plot. Non-random structure implies that the underlying data are not random.
In [1279]: from pandas.tools.plotting import lag_plot
In [1280]: plt.figure()
Out[1280]: <matplotlib.figure.Figure at 0x12a13af90>
In [1281]: data = Series(0.1 * np.random.random(1000) +
......: 0.9 * np.sin(np.linspace(-99 * np.pi, 99 * np.pi, num=1000)))
......:
In [1282]: lag_plot(data)
Out[1282]: <matplotlib.axes.AxesSubplot at 0x1296cd510>
Autocorrelation Plot¶
Autocorrelation plots are often used for checking randomness in time series. This is done by computing autocorrelations for data values at varying time lags. If time series is random, such autocorrelations should be near zero for any and all time-lag separations. If time series is non-random then one or more of the autocorrelations will be significantly non-zero. The horizontal lines displayed in the plot correspond to 95% and 99% confidence bands. The dashed line is 99% confidence band.
In [1283]: from pandas.tools.plotting import autocorrelation_plot
In [1284]: plt.figure()
Out[1284]: <matplotlib.figure.Figure at 0x12a16ed50>
In [1285]: data = Series(0.7 * np.random.random(1000) +
......: 0.3 * np.sin(np.linspace(-9 * np.pi, 9 * np.pi, num=1000)))
......:
In [1286]: autocorrelation_plot(data)
Out[1286]: <matplotlib.axes.AxesSubplot at 0x12a16c2d0>
Bootstrap Plot¶
Bootstrap plots are used to visually assess the uncertainty of a statistic, such as mean, median, midrange, etc. A random subset of a specified size is selected from a data set, the statistic in question is computed for this subset and the process is repeated a specified number of times. Resulting plots and histograms are what constitutes the bootstrap plot.
In [1287]: from pandas.tools.plotting import bootstrap_plot
In [1288]: data = Series(np.random.random(1000))
In [1289]: bootstrap_plot(data, size=50, samples=500, color='grey')
Out[1289]: <matplotlib.figure.Figure at 0x12a19d110>
RadViz¶
RadViz is a way of visualizing multi-variate data. It is based on a simple spring tension minimization algorithm. Basically you set up a bunch of points in a plane. In our case they are equally spaced on a unit circle. Each point represents a single attribute. You then pretend that each sample in the data set is attached to each of these points by a spring, the stiffness of which is proportional to the numerical value of that attribute (they are normalized to unit interval). The point in the plane, where our sample settles to (where the forces acting on our sample are at an equilibrium) is where a dot representing our sample will be drawn. Depending on which class that sample belongs it will be colored differently.
In [1290]: from pandas import read_csv
In [1291]: from pandas.tools.plotting import radviz
In [1292]: data = read_csv('data/iris.data')
In [1293]: plt.figure()
Out[1293]: <matplotlib.figure.Figure at 0x12a19d890>
In [1294]: radviz(data, 'Name')
Out[1294]: <matplotlib.axes.AxesSubplot at 0x12b323910>