Python-3D图表
生活随笔
收集整理的這篇文章主要介紹了
Python-3D图表
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Python-3D圖表 (Python - 3D Charts)
Python is also capable of creating 3d charts. It involves adding a subplot to an existing two-dimensional plot and assigning the projection parameter as 3d.
Python還能夠創(chuàng)建3d圖表。 它涉及將子圖添加到現(xiàn)有的二維圖,并將投影參數(shù)分配為3d。
繪制3D圖 (Drawing a 3D Plot)
3dPlot is drawn by mpl_toolkits.mplot3d to add a subplot to an existing 2d plot.
3dPlot由mpl_toolkits.mplot3d繪制,以將子圖添加到現(xiàn)有的2d圖中。
from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pltchart = plt.figure() chart3d = chart.add_subplot(111, projection='3d')# Create some test data. X, Y, Z = axes3d.get_test_data(0.08)# Plot a wireframe. chart3d.plot_wireframe(X, Y, Z, color='r',rstride=15, cstride=10)plt.show()Its output is as follows ?
其輸出如下-
翻譯自: https://www.tutorialspoint.com/python_data_science/python_3d_charts.htm
總結
以上是生活随笔為你收集整理的Python-3D图表的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 武汉大学2022年计算机考研复试需要准备
- 下一篇: CentOS7使用yum安装MySql并