How do you draw a boxplot without specifying x axis?

后端 未结 3 1296
无人及你
无人及你 2020-12-19 03:26

The base graphics can nicely plot a boxplot using a simple command

data(mtcars)
boxplot(mtcars$mpg)

3条回答
  •  无人及你
    2020-12-19 04:10

    you can set the x aesthetics to factor(0) and tweak the appearance by removing unwanted labels:

    ggplot(mtcars, aes(x = factor(0), mpg)) +
        geom_boxplot() + 
        scale_x_discrete(breaks = NULL) +
        xlab(NULL)
    

提交回复
热议问题