<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
# This import registers the 3D projection, but is otherwise unused. from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import import matplotlib.pyplot as plt import numpy as np # Fixing random state for reproducibility np.random.seed(19680801) 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 m, zlow, zhigh in [('o', -50, -25), ('^', -30, -5)]: xs = randrange(n, 23, 32) ys = randrange(n, 0, 100) zs = randrange(n, zlow, zhigh) ax.scatter(xs, ys, zs, marker=m) ax.set_xlabel('X Label') ax.set_ylabel('Y Label') ax.set_zlabel('Z Label') plt.show()
輸出:
這個輸入的三個維度要求是三列長度一致的資料,可以理解為3個length相等的list。
用上面的scatter或者下面這段直接plot也可以。
fig = plt.figure() ax = fig.gca(projection='3d') ax.plot(h, z, t, '.', alpha=0.5) plt.show()
輸出:
x = [12.7, 12.8, 12.9] y = [1, 2, 3, 4] temp = pd.DataFrame([[7,7,9,9],[2,3,4,5],[1,6,8,7]]).T X,Y = np.meshgrid(x,y) # 形成網格化的資料 temp = np.array(temp) fig = plt.figure(figsize=(16, 16)) ax = fig.gca(projection='3d') ax.plot_surface(Y,X,temp,rcount=1, cmap=cm.plasma, linewidth=1, antialiased=False,alpha=0.5) #cm.plasma ax.set_xlabel('zone', color='b', fontsize=20) ax.set_ylabel('h2o', color='g', fontsize=20) ax.set_zlabel('Temperature', color='r', fontsize=20)
output:
這裡x和y原本都是一維list,通過np.meshgrid可以將其形成4X3的二維資料,如下圖所示:
而第三維,得是4X3的2維的資料,才能進行畫圖
from matplotlib.collections import PolyCollection import matplotlib.pyplot as plt from matplotlib import colors as mcolors import numpy as np axes=plt.axes(projection="3d") def colors(arg): return mcolors.to_rgba(arg, alpha=0.6) verts = [] z1 = [1, 2, 3, 4] x1 = np.arange(0, 10, 0.4) for z in z1: y1 = np.random.rand(len(x1)) y1[0], y1[-1] = 0, 0 verts.append(list(zip(x1, y1))) # print(verts) poly = PolyCollection(verts, facecolors=[colors('r'), colors('g'), colors('b'), colors('y')]) poly.set_alpha(0.7) axes.add_collection3d(poly, zs=z1, zdir='y') axes.set_xlabel('X') axes.set_xlim3d(0, 10) axes.set_ylabel('Y') axes.set_ylim3d(-1, 4) axes.set_zlabel('Z') axes.set_zlim3d(0, 1) axes.set_title("3D Waterfall plot") plt.show()
輸出:
這個的輸入我還沒有完全搞懂,導致我自己暫時不能復現到其他資料,等以後懂了再回來補充。
from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt fig, (ax1, ax2) = plt.subplots( 2, 1, figsize=(8, 12), subplot_kw={'projection': '3d'}) # Get the test data X, Y, Z = axes3d.get_test_data(0.05) # Give the first plot only wireframes of the type y = c ax1.plot_wireframe(X, Y, Z, rstride=10, cstride=0) ax1.set_title("Column (x) stride set to 0") # Give the second plot only wireframes of the type x = c ax2.plot_wireframe(X, Y, Z, rstride=0, cstride=10) ax2.set_title("Row (y) stride set to 0") plt.tight_layout() plt.show()
output:
與plot_surface的輸入格式一樣,X,Y原本為一維list,通過np.meshgrid形成網格化資料。Z為二維資料。其中注意調節rstride、cstride這兩個值實現行列間隔的調整。
自己試了下:
到此這篇關於python 繪製3D圖案例分享的文章就介紹到這了,更多相關python 繪製3D圖內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45