`ggplotly` error on plot with `geom_contour` when one level of a factor isn't represented
Personne n'a encore pris cette issue.
- Langage dominant
- R
- Étoiles
- 2.7k
- Forks
- 641
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
Hi R Plotly Devs,
I hope this finds you well!
This issue involves a dataset with a factor where one factor level isn't represented.
When rendering a ggplot that plots a contour, ggplot will provide informative warnings that zero contours were drawn due to the missing factor level.
However, when this plot object is passed into ggplotly the following error is thrown:
Warning: stat_contour(): Zero contours were generated
Warning in min(x) : no non-missing arguments to min; returning Inf
Warning in max(x) : no non-missing arguments to max; returning -Inf
Error in `$<-.data.frame`(`*tmp*`, "fill", value = NA) :
replacement has 1 row, data has 0
I hope this is a relatively easy fix!
df <- tibble::tribble(
~response, ~variable, ~prediction,
7.45549, 6.24703, "No",
7.45549, 6.62491208333333, "No",
7.45549, 7.00279416666667, "No",
7.45549, 7.38067625, "No",
7.45549, 7.75855833333333, "No",
7.45549, 8.13644041666667, "No"
) |>
dplyr::mutate(prediction = factor(prediction, levels = c("Yes", "No")))
p = ggplot2::ggplot(data = df) +
ggplot2::geom_point(data = df,
ggplot2::aes(
x = .data$response,
y = .data$variable,
color = prediction),
shape = 15,
size = 0.7,
alpha = 0.4) +
ggplot2::geom_contour(data = df,
ggplot2::aes(x = .data$response,
y = .data$variable,
z = as.integer(prediction)),
color = "violet",
size = 0.5,
bins = 1)
plotly::ggplotly(p)
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.
Piste de recherche
Commencez par exécuter l’exemple R reproductible de l’issue et par suivre la manière dont ggplotly gère la couche zero-contour produite par le niveau de facteur manquant. C’est terminé lorsque le graphique ne génère plus l’erreur de remplacement du data frame tout en conservant les avertissements informatifs zero-contour.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Stack technique
- r
- Domaine
- data-visualization
- Type d'issue
- Bug
- Difficulté
- 3/5
- Temps estimé
- 1-2 jours
- Activité
- À l'abandon
- Clarté
- Plutôt claire
- Accessibilité débutants
- 48/100