Hacktoberfest 2026: le issue che i maintainer hanno segnato per ottobre, aperte e adatte ai principianti. Sfoglia le issue Hacktoberfest

Feature Request: Implement Bagplot (Bivariate Boxplot) for 2D and 3D Data Visualization

Aperta
#5,382 1 commento 0 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Valutazione

Difficoltà
5/5
Tempo stimato
Più di una settimana
Idoneità per principianti
30/100
Tipo di issue
Funzionalità
Chiarezza
Abbastanza chiara
Stato di attività
Ferma
Stack tecnologico
plotly, python

Direzione di ricerca

Non vengono indicati file di implementazione o test. Inizia esaminando le API Python Express e graph_objects di Plotly insieme all’articolo Bagplot citato, quindi chiarisci se l’ambito include 2D, 3D o entrambe; il lavoro è considerato completato quando sono stati concordati un’API e un comportamento di visualizzazione corrispondente per le funzionalità richieste di data-depth e rilevamento degli outlier.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Descrizione

This proposal suggests adding support for Bagplots (also known as bivariate boxplots) as a new visualization type in Plotly.
Bagplots are a powerful extension of the traditional boxplot to two or more dimensions, providing a powerful vizualisation which shows statistical properties of 2-3 different variables.

While Plotly currently provides strong support for univariate distribution plots (box, violin, histogram), there is no direct tool to visualize bivariate distribution summaries in a similar “statistical boxplot” style.

The Bagplot, introduced by Rousseeuw, Ruts, and Tukey (1999), fills this gap by visualizing the data depth and outliers in 2D (and potentially 3D) space.
It provides an intuitive, robust alternative to kernel density estimates or convex hulls when exploring multivariate data.

Reference:
Rousseeuw, P. J., Ruts, I., & Tukey, J. W. (1999). The Bagplot: A Bivariate Boxplot. The American Statistician, 53(4), 382–387.
ResearchGate link

Image

Figure 1: Example of a 2D Bagplot showing data depth and outliers (adapted from Rousseeuw et al., 1999).

Proposed Functionality

Using the plotly api:

Express:

import plotly.express as px

# 2D Bagplot
fig2d = px.bagplot(df, x="feature1", y="feature2", depth_method="tukey", show_outliers=True)
fig2d.show()

# 3D Bagplot
fig3d = px.bagplot_3d(df, x="feature1", y="feature2", z="feature3",
                      depth_method="tukey", show_outliers=True)
fig3d.show()

Graph Objects:

import plotly.graph_objects as go

fig = go.Figure(data=go.Bagplot(
    x=df["feature1"],
    y=df["feature2"],
    show_outliers=True,
    depth_method="tukey"
))
fig.show()

fig = go.Figure(data=go.Bagplot3D(
    x=df["x"], y=df["y"], z=df["z"],
    show_outliers=True,
    depth_method="tukey"
))
fig.show()
Lingua principale
Python
Stelle
18.8k
Fork
2.8k
Merge medio
13h 41m
PR unite (30g)
21

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Altre issue di plotly/plotly.py

Tutte le issue di plotly/plotly.py

Issue simili

Altre issue su Python

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.