Buradasın
Matplotlib grafik türleri nelerdir?
Yazeka
Arama sonuçlarına göre oluşturuldu
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)
1. - İ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)
1. - Düzensiz ızgara verileri grafikleri:
tricontour(x, y, z)
,tricontourf(x, y, z)
,tripcolor(x, y, z)
,triplot(x, y)
1. - 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)
1.
5 kaynaktan alınan bilgiyle göre: