R Language Drawing: Box-line diagram

Source: Internet
Author: User
Using Ggplot2 to draw a box line chart
######*****绘制箱线图代码*****#######data1$学区房 <- factor(data1$school, levels = 0:1, labels = c("否", "是"))              #设置学区房数据为因子类型data1$CATE <- factor(data1$CATE,                      levels = c('xicheng', 'dongcheng', 'haidian',                                 'chaoyang', 'fengtai', 'shijingshan'),                     labels = c('西城', '东城', '海淀', '朝阳', '丰台', '石景山'))      #设置城区因子顺序ggplot(data1, aes(x = CATE, y = price, fill = 学区房)) +        geom_boxplot( ) +                                                               #绘制箱线图        labs(title = "北京二手房各城区单价箱线图",              x = '城区', y = '单价(元)', fill = '学区房')                             #添加标题

R Language Drawing: Box-line diagram

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.