Nothing
plot_cond_cat_area <- function(
x_data,
y_data,
x_name,
y_name,
auto_fill = FALSE,
...,
fill = "#555555"
){
# CRAN checks
. <- x <- freq <- category <- bin <- med <- lb <- ub <- NULL
bin_bounds <- data.table(
bin = x_data$bin,
lb = (x_data$min + c(x_data$min[1], x_data$max[-1]))/2
)
bin_bounds$ub <- c(bin_bounds$lb[-1], x_data$max[length(x_data$max)])
data <- rbind(
cbind(bin_bounds[(y_data$bin),.(x = lb)], y_data),
cbind(bin_bounds[(y_data$bin),.(x = ub)], y_data)
)[order(category, bin,x),]
geom <- ggplot2::geom_area(show.legend = FALSE, fill = fill)
if (isTRUE(auto_fill)){
geom <- ggplot2::geom_area(show.legend = FALSE, aes(fill=category))
}
subtitle <- sprintf("%s", y_name)
ggplot2::ggplot(data, aes(x = x, y=freq)) +
geom +
ggplot2::facet_grid(
category~.
) +
# coord_flip() +
ggplot2::labs(
subtitle = subtitle,
x = x_name
) +
ggplot2::scale_y_continuous(
labels = NULL,
breaks = NULL,
name = NULL
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.