plotly / plotly/plotly.R

Hover information partially disappear when providing color input

Aperta
#2,311 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Lingua principale
R
Stelle
2.7k
Fork
641
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

Thanks for this package, it is very useful!
When using it, I encountered a kind of weird bug.

The two following plots should be identical and behave in the same way, except that the second one has colored points.

library(plotly)

plot_ly() %>%
  add_markers(
    x = c(1,2,3), y = c(1,2,3), z = c(1,2,3))

plot_ly() %>%
  add_markers(
    x = c(1,2,3), y = c(1,2,3), z = c(1,2,3), color = c(1,2,3))

For the first plot, all the values appear when I hover over all 3 points, as expected.
However, for the second plot, I can only hover over the second point; no information appears when I hover over the first nor the third point. Here are two screenshots that I made with the second plot (the one that has the bug).

image

image

The expected behavior is that the similar type of information would appear for all points.

More generally, I have the impression than when doing a scatter plot with $n$ points, I can only get the hover information of $n-2$ of them if they are colored. For example, the hoverinfo do not appear for the "extreme" points of this plot:

n = 10
plot_ly() %>%
  add_trace(
    x = 1:n, y = 1:n, z = 1:n, color = 1:n, type="scatter3d", mode="markers")

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.

Direzione di ricerca

Inizia eseguendo i due esempi di plot_ly()/add_markers() e l'esempio scatter3d con n = 10 per riprodurre le informazioni hover mancanti nei punti estremi. Confronta il comportamento hover per i punti colorati e non colorati; il lavoro è completato quando le informazioni hover vengono visualizzate in modo coerente per ogni punto.

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

Valutazione

Stack tecnologico
r
Ambito
data-visualization
Tipo di issue
Bug
Difficoltà
4/5
Tempo stimato
3-5 giorni
Stato di attività
Ferma
Chiarezza
Abbastanza chiara
Idoneità per principianti
32/100

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.