Scatter Plots¶

Scatter plots are ideal for exploring relationships between variables, identifying patterns, clusters, and outliers. Rekha’s scatter plots support multiple encoding channels (color, size, shape) to visualize multi-dimensional data effectively.

Basic Usage¶

import rekha as rk
import pandas as pd

# Simple scatter plot
df = pd.DataFrame({
    'height': [165, 170, 175, 180, 185],
    'weight': [60, 65, 70, 75, 80]
})

fig = rk.scatter(df, x='height', y='weight', title='Height vs Weight')
fig.show()

Parameters¶

See the API Reference for complete parameter documentation.

See Also¶