pies and subplot not working as expected
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
Based on this StackOverflow post, it seems pie charts are not working as I would expect with subplot. I will admit though that this is my first ever attempt at pie charts in Plotly. I did verify by inspecting DOM that both pies do exist in the examples below.
# devtools::install_github('ropensci/plotly")
library(plotly)
ds_r <- data.frame(labels1 = c("Baseline", "DTC", "Detailing", "Flex"),
values1 = c(63.5, 8.5, 20.6, 7.4))
ds_l <- data.frame(labels2 = c("Baseline"),
values2 = c(100))
p <- plot_ly(
ds_r, labels = ~labels1, values = ~values1, type = "pie",
showlegend = F
)
p2 <- plot_ly(
ds_l,labels = ~labels2, values = ~values2, type = "pie",
showlegend = F
)
subplot(p, p2, nrows = 1)

empty axes
# devtools::install_github('ropensci/plotly")
# an "empty" plotlyjs axis for layout
emptyAxis <- list(
title = "",
zeroline = FALSE,
showline = FALSE,
showticklabels = FALSE,
showgrid = FALSE
)
p <- plot_ly(
ds_r, labels = ~labels1, values = ~values1, type = "pie",
showlegend = F
) %>% layout(xaxis = emptyAxis, yaxis = emptyAxis)
p2 <- plot_ly(
ds_l,labels = ~labels2, values = ~values2, type = "pie",
showlegend = F
) %>% layout(xaxis = emptyAxis, yaxis = emptyAxis)
subplot(p, p2, nrows = 1)

Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia eseguendo i due esempi riproducibili usando plot_ly() e subplot(), con e senza il layout con assi vuoti. Traccia il modo in cui subplot() assegna le tracce pie e gli assi; il lavoro è completato quando entrambi i grafici a torta vengono visualizzati correttamente affiancati senza richiedere assi vuoti.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- r
- Ambito
- data-visualization
- Tipo di issue
- Bug
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100