Matplotlib ile oluşturulabilecek bazı grafik türleri: Çift değişkenli veri grafikleri: `plot(x, y)`, `scatter(x, y)`, `bar(x, height)`, `stem(x, y)`, `fill_between(x, y1, y2)`, `stackplot(x, y)`, `stairs(values)`. İstatistiksel dağılım grafikleri: `hist(x)`, `boxplot(X)`, `errorbar(x, y, yerr, xerr)`, `violinplot(D)`, `eventplot(D)`, `hist2d(x, y)`, `hexbin(x, y, C)`, `pie(x)`, `ecdf(x)`. Düzensiz ızgara verileri grafikleri: `tricontour(x, y, z)`, `tricontourf(x, y, z)`, `tripcolor(x, y, z)`, `triplot(x, y)`. 3D ve hacimsel veriler: `bar3d(x, y, z, dx, dy, dz)`, `plot(xs, ys, zs)`, `quiver(X, Y, Z, U, V, W)`, `scatter(xs, ys, zs)`, `plot_surface(X, Y, Z)`, `plot_trisurf(x, y, z)`, `voxels([x, y, z], filled)`, `plot_wireframe(X, Y, Z)`.