Proficients in Plotly, help me please. I have a matrix with heights. I need to build an analogue of go.Surface using Scatter. If this is not possible, then mark the points (vertices) on the Surface chart. All this is needed to better determine the vertices. Thank you.
import plotly.graph_objects as go
import pandas as pd
import numpy as np
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure()
fig.add_trace(go.Surface(z=z_data.values))
#fig.add_trace(go.Scatter3d(z=z_data.values))
fig.update_layout(title='Mt Bruno Elevation', autosize=False,
width=500, height=500,
margin=dict(l=65, r=50, b=65, t=90))
fig.show()
Similar to this
I don't have a lot of experience with 3D graphs. I created a scatterplot 3D from your data, I assigned columns of data frames to the y-axis, assigned rows of data frames to the x-axis, converted the z-axis to a 1D list of data frame elements and drew it. Does this meet the intent of the question?