Individual `barpolar` plots get merged into a single plot when using `subplot()`
Personne n'a encore pris cette issue.
Évaluation
- Difficulté
- 3/5
- Temps estimé
- 1-2 jours
- Accessibilité débutants
- 45/100
- Type d'issue
- Bug
- Clarté
- Plutôt claire
- Activité
- À l'abandon
- Stack technique
- plotly, r
- Domaine
- data-visualization
Piste de recherche
Commencez avec le reprex R fourni et suivez la manière dont subplot() combine les deux objets barpolar de plotly. Comparez le subplot layout généré et les trace assignments pour les graphiques barpolar, puis exécutez le reprex afin de vérifier que chaque entrée reste dans sa propre cellule de la grille au lieu d’être agrégée.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Description
Description of the issue
When I try to display any given number of barpolar plots using the subplot() function, plotly only shows one plot that has somehow aggregated all of the data from the individual plots.
Minimal reprex
Code
library(plotly)
# First barpolar plot
plot1 <- plot_ly(type = 'barpolar') %>%
add_trace(
r = c(10, 15, 20, 25, 30),
theta = c("A", "B", "C", "D", "E"),
marker = list(color = c("red", "blue", "green", "purple", "orange")),
name = "Plot 1"
) %>%
layout(title = "Barpolar Plot 1")
# Second barpolar plot
plot2 <- plot_ly(type = 'barpolar') %>%
add_trace(
r = c(5, 10, 15, 20, 25),
theta = c("A", "B", "C", "D", "E"),
marker = list(color = c("cyan", "magenta", "yellow", "gray", "pink")),
name = "Plot 2"
) %>%
layout(title = "Barpolar Plot 2")
# Combine the two plots into a subplot
subplot(plot1, plot2, nrows = 1)
Result
Expected result
Both plots shown individually, in a grid with 1 column and 2 rows.
Show session info
R version 4.4.1 (2024-06-14)
Platform: aarch64-apple-darwin20
Running under: macOS Sonoma 14.1.1
Matrix products: default
BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRlapack.dylib; LAPACK version 3.12.0
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
time zone: Europe/Madrid
tzcode source: internal
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] lubridate_1.9.3 forcats_1.0.0 stringr_1.5.1 dplyr_1.1.4
[5] purrr_1.0.2 readr_2.1.5 tidyr_1.3.1 tibble_3.2.1
[9] tidyverse_2.0.0 plotly_4.10.4 ggplot2_3.5.1
loaded via a namespace (and not attached):
[1] gtable_0.3.5 jsonlite_1.8.8 compiler_4.4.1 tidyselect_1.2.1
[5] scales_1.3.0 yaml_2.3.9 fastmap_1.2.0 R6_2.5.1
[9] generics_0.1.3 htmlwidgets_1.6.4 munsell_0.5.1 tzdb_0.4.0
[13] pillar_1.9.0 rlang_1.1.4 utf8_1.2.4 stringi_1.8.4
[17] lazyeval_0.2.2 timechange_0.3.0 viridisLite_0.4.2 cli_3.6.3
[21] withr_3.0.0 magrittr_2.0.3 crosstalk_1.2.1 digest_0.6.36
[25] grid_4.4.1 rstudioapi_0.16.0 hms_1.1.3 lifecycle_1.0.4
[29] vctrs_0.6.5 glue_1.7.0 data.table_1.15.4 fansi_1.0.6
[33] colorspace_2.1-0 httr_1.4.7 tools_4.4.1 pkgconfig_2.0.3
[37] htmltools_0.5.8.1
- Langage dominant
- R
- Étoiles
- 2.7k
- Forks
- 641
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Guide de contribution
Ouvrir le guide de contribution
Par où commencer
- Lisez l'issue en entier, puis le guide de contribution du projet.
- Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
- Forkez le dépôt et travaillez sur une branche.
- Ouvrez une pull request qui référence le numéro de l'issue.
Autres issues de plotly/plotly.R
-
Difficulté 2/5 1-3 heures Accessibilité débutants 62/100
-
Difficulté 4/5 3-5 jours Accessibilité débutants 35/100
-
Difficulté 3/5 1-2 jours Accessibilité débutants 68/100
-
Data gets dropped in add_trace and consequently points have the wrong color if NA is present Ouverte
Difficulté 3/5 1-2 jours Accessibilité débutants 72/100
-
save_image Error Ouverte
Difficulté 3/5 1-2 jours Accessibilité débutants 52/100
Toutes les issues de plotly/plotly.R
Issues similaires
-
Difficulté 2/5 1-3 heures Accessibilité débutants 82/100
r-lib/pkgdepends#485 · 3 commentaires ·
-
Difficulté 1/5 Moins d'une heure Accessibilité débutants 92/100
-
beginners blocker
Difficulté 2/5 1-3 heures Accessibilité débutants 78/100
-
enviPathR OuverteBuild Error Build OK Build Warning policies-accepted pre-review precheck-passed
Difficulté 1/5 Moins d'une heure Accessibilité débutants 84/100
Bioconductor/BiocContributions#207 · 6 commentaires ·
-
Difficulté 2/5 1-3 heures Accessibilité débutants 74/100
datacarpentry/semester-biology#1255 ·