ggstats
:
extension to ggplot2
for plotting statsThe ggstats
package provides suite of functions to plot
regression model coefficients (“forest plots”) using
ggplot2
..
The suite also includes new statistics to compute proportions, weighted mean and cross-tabulation statistics, as well as new geometries to add alternative background color to a plot.
The original versions of several functions were originally developed
within the {GGally}
package.
To install stable version:
install.packages("ggstats")
Documentation of stable version: https://larmarange.github.io/ggstats/
To install development version:
::install_github("larmarange/ggstats") remotes
Documentation of development version: https://larmarange.github.io/ggstats/dev/
library(ggstats)
<- lm(Fertility ~ ., data = swiss)
mod1 ggcoef_model(mod1)
<- step(mod1, trace = 0)
mod2 <- lm(Fertility ~ Agriculture + Education * Catholic, data = swiss)
mod3 <- list(
models "Full model" = mod1,
"Simplified model" = mod2,
"With interaction" = mod3
)
ggcoef_compare(models, type = "faceted")
library(ggplot2)
ggplot(as.data.frame(Titanic)) +
aes(x = Class, fill = Survived, weight = Freq, by = Class) +
geom_bar(position = "fill") +
geom_text(stat = "prop", position = position_fill(.5)) +
facet_grid(~ Sex)
data(tips, package = "reshape")
ggplot(tips) +
aes(x = day, y = total_bill, fill = sex) +
stat_weighted_mean(geom = "bar", position = "dodge") +
ylab("Mean total bill per day and sex")
ggplot(as.data.frame(Titanic)) +
aes(
x = Class, y = Survived, weight = Freq,
size = after_stat(observed), fill = after_stat(std.resid)
+
) stat_cross(shape = 22) +
scale_fill_steps2(breaks = c(-3, -2, 2, 3), show.limits = TRUE) +
scale_size_area(max_size = 20)
library(survey, quietly = TRUE)
#>
#> Attachement du package : 'survey'
#> L'objet suivant est masqué depuis 'package:graphics':
#>
#> dotchart
<- svydesign(
dw ids = ~ 1,
weights = ~ Freq,
data = as.data.frame(Titanic)
)ggsurvey(dw) +
aes(x = Class, fill = Survived) +
geom_bar(position = "fill") +
ylab("Weighted proportion of survivors")