ggplotly not working with control chart library ggQC
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- R
- Estrellas
- 2.7k
- Forks
- 641
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
Brief description of the problem:
Adding some lines and labels using the ggQC library causes a hard fail.
This code works with ggplotly:
min_date = as.Date(min(lots_df_filtered()$DATE))
max_date = as.Date(max(lots_df_filtered()$DATE))
if (!is.na(min_date)) {
num_days = length(seq(from = min_date, to = max_date, by = 'day')) - 1
date_breaks <- if(num_days <= 31) 'day' else 'week'
XmR_Plot <-
ggplot(lots_df_filtered(), aes(x = as.Date(DATE), y = YRS_YIELD)) +
geom_point(alpha = .5) + geom_line() +
labs(title=paste0(input$mfg_step_name, ' Lot Yield Control Chart')) +
scale_x_date(date_breaks=date_breaks) +
theme_ipsum_ps() +
theme(axis.text.x = element_text(angle = 60, vjust = 0.5, hjust=1),
axis.title.x=element_blank())
output$lot_time_series <- renderPlotly(ggplotly(XmR_Plot))
}`
Produces a nice chart as so:

The following code results in an error (alpha must be of length 1 or the same length as x):
min_date = as.Date(min(lots_df_filtered()$DATE))
max_date = as.Date(max(lots_df_filtered()$DATE))
if (!is.na(min_date)) {
num_days = length(seq(from = min_date, to = max_date, by = 'day')) - 1
date_breaks <- if(num_days <= 31) 'day' else 'week'
XmR_Plot <-
ggplot(lots_df_filtered(), aes(x = as.Date(DATE), y = YRS_YIELD)) +
geom_point(alpha = .5) + geom_line() +
stat_QC(method = "XmR",
auto.label = T,
label.digits = 2,
show.1n2.sigma = T
) +
labs(title=paste0(input$mfg_step_name, ' Lot Yield Control Chart')) +
scale_x_date(date_breaks=date_breaks) +
theme_ipsum_ps() +
theme(axis.text.x = element_text(angle = 60, vjust = 0.5, hjust=1),
axis.title.x=element_blank())
output$lot_time_series <- renderPlotly(ggplotly(XmR_Plot))
}
Here is what the ggplot looks like when I do not use ggplotly and do use ggCC:

Could this be related to the ggplotly argument layerData? Any help is appreciated.
thx
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Comienza ejecutando la reproducción de R proporcionada con ggplotly, ggplot2 y ggQC, comparando el gráfico que funciona con la versión que usa stat_QC(). Investiga el error reportado “alpha must be of length 1 or the same length as x” y confirma que las capas del gráfico de control se renderizan mediante ggplotly sin que se produzca un fallo grave.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- r
- Área
- data-visualization
- Tipo de issue
- Error
- Dificultad
- 3/5
- Tiempo estimado
- 1-2 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 35/100