I want to plot my coefficients from three different models to show the shrinkage effect of the estimated coefficients with a dot-chart.
For more context: I am working with a hierarchical linear model and want to compare those estimates with the estimates of the complete pooling and the no pooling estimates.
Let's say we have a dataframe like this:
a <- c(1,2,3,4)
b <- c(2.5, 2.5, 2.5, 2.5)
c <- c(1.2,2.3,2.8,3.7)
city <- c("London", "Madrid", "Sidney", "Paris")
df <- as.data.frame(cbind(city,a,b,c))
df <- df[order(df$a),]
I want to show them in a descending order kinda like in this picture but without the standard deviations, just the points. Is there a way to do that simply with ggplot?