VOOZH about

URL: https://www.geeksforgeeks.org/python/scatter-plot-in-plotly-using-graph_objects-class/

⇱ Scatter plot in Plotly using graph_objects class - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scatter plot in Plotly using graph_objects class

Last Updated : 30 Aug, 2021

Plotly is a Python library which is used to design graphs, especially interactive graphs. It can plot various graphs and charts like histogram, barplot, boxplot, spreadplot and many more. It is mainly used in data analysis as well as financial analysis. plotly is an interactive visualization library.

Scatter plot using graph_objects class

Scatter plot are those charts in which data points are represented horizontally and on vertical axis to show that how one variable affect on another variable. The scatter() method of graph_objects class produces a scatter trace. The mode of the property decides the appearance of data points.

Syntax: plotly.graph_objects.Scatter(arg=None, cliponaxis=None, connectgaps=None, customdata=None, customdatasrc=None, dx=None, dy=None, error_x=None, error_y=None, fill=None, fillcolor=None, groupnorm=None, hoverinfo=None, hoverinfosrc=None, hoverlabel=None, hoveron=None, hovertemplate=None, hovertemplatesrc=None, hovertext=None, hovertextsrc=None, ids=None, idssrc=None, legendgroup=None, line=None, marker=None, meta=None, metasrc=None, mode=None, name=None, opacity=None, orientation=None, r=None, rsrc=None, selected=None, selectedpoints=None, showlegend=None, stackgaps=None, stackgroup=None, stream=None, t=None, text=None, textfont=None, textposition=None, textpositionsrc=None, textsrc=None, texttemplate=None, texttemplatesrc=None, tsrc=None, uid=None, uirevision=None, unselected=None, visible=None, x=None, x0=None, xaxis=None, xcalendar=None, xsrc=None, y=None, y0=None, yaxis=None, ycalendar=None, ysrc=None, **kwargs)

Parameters:

NameDescription
dxSets the x coordinate step.
dySets the y coordinate step.
xSets the x coordinates.
x0Alternate to x. Builds a linear space of x coordinates. Use with dx where x0 is the starting coordinate and dx the step.
ySets the y coordinates.
y0Alternate to y. Builds a linear space of y coordinates. Use with dy where y0 is the starting coordinate and dy the step.

Example:

Output:


 

👁 Image

Presenting Scatter with a Color Dimension


 

Color scale can be shown using the showscale parameter. This parameter takes a boolean value. If the value is true then the scale is shown otherwise not.


 

Example:


 

Output:


 

👁 Image

Styling Scatter Plots


 

In scatter plot can be styled using keywords arguments, let's see the examples given below:


 

Example 1: Changing the color of the graph


 

Output:


 

👁 Image


 

Example 2: Using tips dataset


 

Output:


 

👁 Image

Bubble Scatter Plots


 

The bubble scatter plot can be created using the marker size. Marker size and color are used to control the overall size of the marker. Marker size helps to maintain the color inside the bubble in the graph.


 

Example:


 

Output:


 

👁 Image


 

Comment
Article Tags:
Article Tags: