subgrounds.plotly_wrappers module#

DEPRECIATED: Use subgrounds.contrib.plotly instead

class subgrounds.plotly_wrappers.Figure(subgrounds, traces, **kwargs)#

Bases: object

figure: Figure#
subgrounds: Subgrounds#
traces: list[subgrounds.contrib.plotly.traces.TraceWrapper]#
req: subgrounds.query.DataRequest | None#
data: list[dict[str, Any]] | None#
args: dict[str, Any]#
refresh()#
class subgrounds.plotly_wrappers.TraceWrapper(**kwargs)#

Bases: ABC

graph_object: BaseTraceType#
fpaths: dict[str, subgrounds.subgraph.fieldpath.FieldPath]#
args: dict[str, Any]#
mk_trace(data)#
property field_paths: list[subgrounds.subgraph.fieldpath.FieldPath]#
class subgrounds.plotly_wrappers.Scatter(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/line-and-scatter/

graph_object#

alias of Scatter

class subgrounds.plotly_wrappers.Pie(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/pie-charts/

graph_object#

alias of Pie

class subgrounds.plotly_wrappers.Bar(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/bar-charts/

graph_object#

alias of Bar

class subgrounds.plotly_wrappers.Heatmap(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/heatmaps/

graph_object#

alias of Heatmap

class subgrounds.plotly_wrappers.Contour(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/contour-plots/

graph_object#

alias of Contour

class subgrounds.plotly_wrappers.Table(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/contour-plots/

graph_object#

alias of Table

class subgrounds.plotly_wrappers.Box(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/box-plots/

graph_object#

alias of Box

class subgrounds.plotly_wrappers.Violin(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/violin/

graph_object#

alias of Violin

class subgrounds.plotly_wrappers.Histogram(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/histograms/

graph_object#

alias of Histogram

class subgrounds.plotly_wrappers.Histogram2d(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/2D-Histogram/

graph_object#

alias of Histogram2d

class subgrounds.plotly_wrappers.Histogram2dContour(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/2d-histogram-contour/

graph_object#

alias of Histogram2dContour

class subgrounds.plotly_wrappers.Ohlc(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/ohlc-charts/

graph_object#

alias of Ohlc

class subgrounds.plotly_wrappers.Candlestick(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/candlestick-charts/

graph_object#

alias of Candlestick

class subgrounds.plotly_wrappers.Waterfall(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/waterfall-charts/

graph_object#

alias of Waterfall

class subgrounds.plotly_wrappers.Funnel(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/funnel-charts/

graph_object#

alias of Funnel

class subgrounds.plotly_wrappers.Indicator(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/indicator/

graph_object#

alias of Indicator

class subgrounds.plotly_wrappers.Scatter3d(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/3d-scatter-plots/

graph_object#

alias of Scatter3d

class subgrounds.plotly_wrappers.Surface(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/3d-surface-plots/

graph_object#

alias of Surface

class subgrounds.plotly_wrappers.Scattergeo(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/scatter-plots-on-maps/

graph_object#

alias of Scattergeo

class subgrounds.plotly_wrappers.Choropleth(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/choropleth-maps/

graph_object#

alias of Choropleth

class subgrounds.plotly_wrappers.Scattermapbox(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/scattermapbox/

graph_object#

alias of Scattermapbox

class subgrounds.plotly_wrappers.Choroplethmapbox(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/mapbox-county-choropleth/

graph_object#

alias of Choroplethmapbox

class subgrounds.plotly_wrappers.Densitymapbox(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/mapbox-density-heatmaps/

graph_object#

alias of Densitymapbox

class subgrounds.plotly_wrappers.Scatterpolar(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/polar-chart/

graph_object#

alias of Scatterpolar

class subgrounds.plotly_wrappers.Barpolar(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/wind-rose-charts/

graph_object#

alias of Barpolar

class subgrounds.plotly_wrappers.Sunburst(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/sunburst-charts/

graph_object#

alias of Sunburst

class subgrounds.plotly_wrappers.Treemap(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/treemaps/

graph_object#

alias of Treemap

class subgrounds.plotly_wrappers.Icicle(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/icicle-charts/

graph_object#

alias of Icicle

class subgrounds.plotly_wrappers.Sankey(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/sankey-diagram/

graph_object#

alias of Sankey

class subgrounds.plotly_wrappers.Parcoords(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/parallel-coordinates-plot/

graph_object#

alias of Parcoords

class subgrounds.plotly_wrappers.Parcats(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/parallel-categories-diagram/

graph_object#

alias of Parcats

class subgrounds.plotly_wrappers.Carpet(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/carpet-plot/

graph_object#

alias of Carpet

class subgrounds.plotly_wrappers.Scattercarpet(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/carpet-scatter/

graph_object#

alias of Scattercarpet

class subgrounds.plotly_wrappers.Contourcarpet(**kwargs)#

Bases: TraceWrapper

See https://plotly.com/python/carpet-contour/

graph_object#

alias of Contourcarpet