首页 > 解决方案 > 如何搜索绘图图形的特定属性的选项?

问题描述

问题

在下图中,线的锯齿形状被设置为线属性的'hvh'参数。shape作为更一般情况的具体示例,假设我忘记了将哪个属性(或属性)'hvh'作为参数。如何搜索整个情节图以找到它?

阴谋:

在此处输入图像描述

代码:

#imports
import plotly.plotly as py
import plotly.graph_objs as go
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot

import numpy as np
import pandas as pd
# Notebook settings
init_notebook_mode(connected=True)

# Some sample data
x = np.random.normal(50, 5, 500)
binned = np.histogram(x, bins=25, density=True)
plot_y = np.cumsum(binned[0])

# Line
trace1 = go.Scatter(
    x=binned[1],
    y=plot_y,
    mode='lines',
    name="X",
    hoverinfo='all',
    line=dict(color = 'rgb(1255, 0, 0)', shape='hvh'
    )
)

data = [trace1]

# Layout
layout = dict(title = 'Where is hvh?',
    legend=dict(
        y=0.5,
        traceorder='reversed',
        font=dict(
            size=16
        )
    )
)

# Make figure
fig = dict(data=data, layout=layout)

# Plot
iplot(fig, filename='line-shapes')

细节:

使用 获得形状line=dict(color = 'rgb(1255, 0, 0)', shape='hvh'。如果你只是简单地运行fig,它将返回一个字典,你可以在其中看到参数应用于图形的位置:

{'data': [Scatter({
      'hoverinfo': 'all',
      'line': {'color': 'rgb(1255, 0, 0)', 'shape': 'hvh'},
      'mode': 'lines',
      'name': 'X',
      'x': array([35.36954648,
[...]

假设我想知道可以将 iplot 图形'hvh'或任何其他字符串作为参数的其他属性,我该如何搜索?我碰巧知道这'hvh'显示在输出中help(trace1['line'])

shape
 |      Determines the line shape. With "spline" the lines are drawn
 |      using spline interpolation. The other available values
 |      correspond to step-wise line shapes.
 |      
 |      The 'shape' property is an enumeration that may be specified as:
 |        - One of the following enumeration values:
 |              ['linear', 'spline', 'hv', 'vh', 'hvh', 'vhv']

但是,如果'hvh'要针对多个形状发生,则很难查看help()每个可能属性的输出。如果我正在寻找'shape'自己,我可以在plot.ly/python/reference/上运行搜索并获得:

在此处输入图像描述

但这不是'hvh'or的情况hvh

在此处输入图像描述

感谢您的任何建议!

标签: pythonplotly

解决方案


如果搜索框没有为您提供所需的内容,您始终可以使用浏览器内的 ctl-F 在页面中搜索https://plot.ly/python/reference/ 。

也就是说,我刚刚更新了我们的搜索索引以包含枚举属性中的接受值列表,因此截至 2 分钟前,搜索“hvh”给出:

在此处输入图像描述


推荐阅读