盘旋

2024-04-24 11:31:06 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在绘制三维散点图:

d = {'x':[1,2,3,4], 'y':[2,3,1,5], 'z':[3,2,3,2], 't':[4,1,2,3], 'score':[2,3,1,2]}
df = pd.DataFrame (d)

xtitle = 'x'
ytitle = 'y'
ztitle = 'z'

trace1 = go.Scatter3d(x=df[xtitle], 
                        y= df[ytitle], 
                          z = df[ztitle],
                                       marker=dict(color=df['score'],
                                                   showscale=True,
                                                  colorbar=dict(
                                                    title='score)'
                                                )),                       
                                       mode='markers')

layout = go.Layout (
        scene = Scene(
            xaxis = dict (title = xtitle),
            yaxis = dict (title = ytitle),
            zaxis = dict (title = ztitle)
        )
    )
fig = go.Figure(data=[trace1], layout = layout)
plotly.offline.iplot(fig)

当我将鼠标悬停在一个点上时,它将显示x、y和z值。在

enter image description here

在数据框df中,我有另一列名为t,我希望当我将鼠标悬停在某个点上时,它也会显示x、y、z、t和score。在

我怎么能做到呢?在


Tags: godataframedftitlefig绘制dictpd
2条回答

使用hoverinfo参数。在

trace1 = go.Scatter3d(x = df['x'], 
                      y = df['y'], 
                      z = df['z'],
                      text = ['t: %d<br>Score: %d'%(t,s) for t,s in df.loc[:,['t','score']].values],
                      hoverinfo = 'text',
                      marker=dict(color=df['score'],
                                  showscale=True,
                                  colorbar=dict(title='score')
                                  ),                       
                      mode='markers')

enter image description here

您可以在跟踪中使用texthoverinfo。在

import plotly.graph_objs as go
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
init_notebook_mode(connected=True)
import pandas as pd
d = {'x':[1,2,3,4], 'y':[2,3,1,5], 'z':[3,2,3,2], 't':[4,1,2,3], 'score':[2,3,1,2]}
df = pd.DataFrame (d)

xtitle = 'x'
ytitle = 'y'
ztitle = 'z'

trace1 = go.Scatter3d(
    x=df[xtitle], 
    y= df[ytitle], 
    z = df[ztitle],
    marker=dict(
        color=df['score'],
        showscale=True,
        colorbar=dict(title='score)')
    ),
    mode='markers',
    text = ["t: {}".format(x) for x in df['t'] ]  # <  added line!
    # hoverinfo = df['t']  # alternative
)

layout = go.Layout (
        scene = dict(
            xaxis = dict (title = xtitle),
            yaxis = dict (title = ytitle),
            zaxis = dict (title = ztitle)
        )
    )
fig = go.Figure(data=[trace1], layout = layout)
iplot(fig)

有用的链接:SO answer 0SO answer 1SO answer 2。您想要使用text属性、hoverinfo和{}。Here is the documentation。在

enter image description here

相关问题 更多 >