我在我的 Shiny 应用程序中有一些欢乐图,当我编写它们时它们运行良好。但是,现在它们都显示为空白图。
例如,我的一个情节有以下代码:
PR2016_height_joy <- ggplot(subset(arranged_PR2016_demo_data, CORAL_CD %in% PR2016_joy_vector), aes(x = HEIGHT, y = CORAL_CD)) +
geom_joy(scale = 3, fill = "darkblue") +
xlab("Height (cm)") +
ylab("Species") +
ggtitle(region) +
theme(plot.title = element_text(hjust = 0.5))
现在呈现警告:
Warning: Computation failed in `stat_joy()`: unused arguments (bw = bandwidth, from = min, to = max, na.rm = TRUE)
而情节只是一个空白情节。其他人是否也发生过类似的问题?