How do you draw a boxplot without specifying x axis?

后端 未结 3 1284
无人及你
无人及你 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 03:44

    You have to provide some dummy value to x. theme() elements are used to remove x axis title and ticks.

    ggplot(mtcars,aes(x=factor(0),mpg))+geom_boxplot()+
       theme(axis.title.x=element_blank(),
        axis.text.x=element_blank(),
        axis.ticks.x=element_blank())
    

    Or using qplot() function:

    qplot(factor(0),mpg,data=mtcars,geom='boxplot')
    

提交回复
热议问题