91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用python繪制3D圖案

發布時間:2022-08-01 11:04:17 來源:億速云 閱讀:163 作者:iii 欄目:開發技術

這篇文章主要講解了“怎么使用python繪制3D圖案”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么使用python繪制3D圖案”吧!

1.散點圖

代碼

# 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()

輸出:

怎么使用python繪制3D圖案

輸入的數據格式

這個輸入的三個維度要求是三列長度一致的數據,可以理解為3個length相等的list。
用上面的scatter或者下面這段直接plot也可以。

fig = plt.figure()
ax = fig.gca(projection='3d')
ax.plot(h, z, t, '.', alpha=0.5)
plt.show()

輸出:

怎么使用python繪制3D圖案

2.三維表面 surface

代碼

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('h3o', color='g', fontsize=20)
ax.set_zlabel('Temperature', color='r', fontsize=20)

output:

怎么使用python繪制3D圖案

輸入的數據格式

這里x和y原本都是一維list,通過np.meshgrid可以將其形成4X3的二維數據,如下圖所示:

怎么使用python繪制3D圖案

怎么使用python繪制3D圖案

而第三維,得是4X3的2維的數據,才能進行畫圖

scatter + surface圖形展示

怎么使用python繪制3D圖案

3. 三維瀑布圖waterfall

代碼

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()

輸出:

怎么使用python繪制3D圖案

輸入的數據格式

這個的輸入我還沒有完全搞懂,導致我自己暫時不能復現到其他數據,等以后懂了再回來補充。

4. 3d wireframe

code

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:

怎么使用python繪制3D圖案

輸入的數據格式

與plot_surface的輸入格式一樣,X,Y原本為一維list,通過np.meshgrid形成網格化數據。Z為二維數據。其中注意調節rstride、cstride這兩個值實現行列間隔的調整。

自己試了下:

怎么使用python繪制3D圖案

感謝各位的閱讀,以上就是“怎么使用python繪制3D圖案”的內容了,經過本文的學習后,相信大家對怎么使用python繪制3D圖案這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宝丰县| 龙南县| 探索| 阿合奇县| 河北省| 长寿区| 肃宁县| 宣汉县| 侯马市| 道孚县| 柏乡县| 望城县| 罗平县| 无极县| 资讯| 宜章县| 云南省| 巴林右旗| 柳河县| 万载县| 泗阳县| 永城市| 长泰县| 宁国市| 平顺县| 平谷区| 荔波县| 霍山县| 玉屏| 从化市| 驻马店市| 克东县| 威宁| 响水县| 大宁县| 巍山| 佛冈县| 和顺县| 长汀县| 黔江区| 盐边县|