您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么用Python+Matplotlib繪制三維折線圖的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇怎么用Python+Matplotlib繪制三維折線圖文章都會有所收獲,下面我們一起來看看吧。
三維圖像技術是現在國際最先進的計算機展示技術之一,任何普通電腦只需要安裝一個插件,就可以在網絡瀏覽器中呈現三維的產品,不但逼真,而且可以動態展示產品的組合過程,特別適合遠程瀏覽。
立體圖視覺上層次分明色彩鮮艷,具有很強的視覺沖擊力,讓觀看的人駐景時間長,留下深刻的印象。立體圖給人以真實、栩栩如生,人物呼之欲出,有身臨其境的感覺,有很高的藝術欣賞價值。
首先要安裝Matplotlib庫可以使用pip:
pip install matplotlib
假設已經安裝了matplotlib工具包。
利用matplotlib.figure.Figure創建一個圖框:
import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = fig.add_subplot(111, projection='3d')
基本用法:ax.plot(x,y,z,label=' ')
代碼如下:
import matplotlib as mpl from mpl_toolkits.mplot3d import Axes3D import numpy as np import matplotlib.pyplot as plt mpl.rcParams['legend.fontsize'] = 10 fig = plt.figure() ax = fig.add_subplot(projection='3d') theta = np.linspace(-4 * np.pi, 4 * np.pi, 100) z = np.linspace(-2, 2, 100) r = z ** 2 + 1 x = r * np.sin(theta) y = r * np.cos(theta) ax.plot(x, y, z, label='parametric curve') ax.legend()
效果如下:
基本語法:
ax.scatter(xs, ys, zs, s=20, c=None, depthshade=True, *args, *kwargs)
代碼大意為:
xs,ys,zs:輸入數據;
s:scatter點的尺寸
c:顏色,如c = 'r’就是紅色;
depthshase:透明化,True為透明,默認為True,False為不透明
*args等為擴展變量,如maker = ‘o’,則scatter結果為’o‘的形狀
示例代碼:
from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt import numpy as np def randrange(n, vmin, vmax): ''' Helper function to make an array of random numbers having shape (n, ) with each number distributed Uniform(vmin, vmax). ''' return (vmax - vmin)*np.random.rand(n) + vmin fig = plt.figure() ax = fig.add_subplot(111, projection='3d') n = 100 # For each set of style and range settings, plot n random points in the box # defined by x in [23, 32], y in [0, 100], z in [zlow, zhigh]. for c, m, zlow, zhigh in [('r', 'o', -50, -25), ('b', '^', -30, -5)]: xs = randrange(n, 23, 32) ys = randrange(n, 0, 100) zs = randrange(n, zlow, zhigh) ax.scatter(xs, ys, zs, c=c, marker=m) ax.set_xlabel('X Label') ax.set_ylabel('Y Label') ax.set_zlabel('Z Label') plt.show()
效果:
基本用法:ax.plot_wireframe(X, Y, Z, *args, **kwargs)
X,Y,Z:輸入數據
rstride:行步長
cstride:列步長
rcount:行數上限
ccount:列數上限
示例代碼:
from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(100, projection='3d') # Grab some test data. X, Y, Z = axes3d.get_test_data(0.12) # Plot a basic wireframe. ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) plt.show()
基本用法:ax.plot_trisurf(*args, **kwargs)
ax.plot_trisurf(*args, **kwargs)
X,Y,Z:數據
其他參數類似surface-plot
from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt import numpy as np n_radii = 8 n_angles = 36 radii = np.linspace(0.125, 1.0, n_radii) angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False) angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) # points in the (x, y) plane. x = np.append(0, (radii*np.cos(angles)).flatten()) y = np.append(0, (radii*np.sin(angles)).flatten()) z = np.sin(-x*y) fig = plt.figure() ax = fig.add_subplot(projection='3d') ax.plot_trisurf(x, y, z, linewidth=0.2, antialiased=True) plt.show()
運行效果圖:
利用scatter生成隨機散點圖。
函數定義:
#函數定義
matplotlib.pyplot.scatter(x, y,
s=None, #散點的大小 array scalar
c=None, #顏色序列 array、sequency
marker=None, #點的樣式
cmap=None, #colormap 顏色樣式
norm=None, #歸一化 歸一化的顏色camp
vmin=None, vmax=None, #對應上面的歸一化范圍
alpha=None, #透明度
linewidths=None, #線寬
verts=None, #
edgecolors=None, #邊緣顏色
data=None,
**kwargs
)
示例代碼:
import numpy as np import matplotlib.pyplot as plt #定義坐標軸 fig4 = plt.figure() ax4 = plt.axes(projection='3d') #生成三維數據 xx = np.random.random(20)*10-5 #取100個隨機數,范圍在5~5之間 yy = np.random.random(20)*10-5 X, Y = np.meshgrid(xx, yy) Z = np.sin(np.sqrt(X**2+Y**2)) #作圖 ax4.scatter(X,Y,Z,alpha=0.3,c=np.random.random(400),s=np.random.randint(10,20,size=(20, 20))) #生成散點.利用c控制顏色序列,s控制大小 plt.show()
效果:
關于“怎么用Python+Matplotlib繪制三維折線圖”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“怎么用Python+Matplotlib繪制三維折線圖”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。