The centered_dotplot() function creates a centered dot
plot for a nominal variable, ordering categories from the most frequent
at the center toward less frequent categories on both sides. Optionally,
it can connect points with a line.
# Example usage of centered_dotplotcentered_dotplot(mpg, "manufacturer")
# Example with connecting linecentered_dotplot(mpg, "manufacturer", connect =TRUE)