python plotly scatter code example
Example 1: go.scatter
import plotly.graph_objects as go
fig = go.Figure()
# Add traces
fig.add_trace(go.Scatter(x=df['col_x'], y=df['col_y'],
mode='markers',
name='markers'))
fig.add_trace(go.Scatter(x=df2['col_x'], y=df2['col_y'],
mode='lines+markers',
name='lines+markers'))
fig.show()
Example 2: scatter plot plotly
import plotly.express as px
df = px.data.iris()
fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species",
size='petal_length', hover_data=['petal_width'])
fig.show()
Example 3: how to do scatter plot in pyplot
import numpy as npimport matplotlib.pyplot as plt
# Create data
N = 500x = np.random.rand(N)
y = np.random.rand(N)
colors = (0,0,0)
area = np.pi*3
# Plot
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.title('Scatter plot pythonspot.com')
plt.xlabel('x')
plt.ylabel('y')
plt.show()