Найти - Пользователи
Полная версия: Surface plotly python
Начало » Python для экспертов » Surface plotly python
1
ShuraP
добрый день . есть данные 3 . как мне создать матрицу 3d для Surface plotly python

 x =209.173484
199.173484
189.173484
179.173484
169.173484
159.173484
149.173484
139.173484
129.173484
119.173484
109.173484
 y = -237.6199252
-237.6199252
-237.6199252
-237.6199252
-237.6199252
-237.6199252
-237.6199252
-237.6199252
-237.6199252
-237.6199252
-237.6199252
 z= 0.7965
1.1224
1.3593
1.368
1.7618
2.0407
2.1937
2.5601
2.8385
3.0383

 import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
import scipy.interpolate as interp
import plotly.graph_objects as go
import pandas as pd
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(111, projection = '3d')
ax.scatter(x,y,dz, c = 'y', marker='o')
xgrid,ygrid = np.meshgrid(x, y)
# ax.plot_wireframe(x,y,dz, rstride=2, cstride=2)
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')
plt.show()

получил как тyт картинки загрузить ?
'C:\Users\apougatc\OneDrive - KLA Corporation\Desktop\polychil.png' а то выходит так


а хочу
Your text to link here…

AD0DE412
.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB