美文网首页
第4章 语法突破

第4章 语法突破

作者: iBioinformatics | 来源:发表于2023-03-09 09:11 被阅读0次

    4.2.1 图形属性与数据的映射

    > ggplot(mpg,aes(displ,hwy,colour=factor(cyl)))+
          geom_line()+
          theme(legend.position="none")
    
    > ggplot(mpg,aes(displ,hwy,colour=factor(cyl)))+
          geom_bar(stat="identity",position="identity",fill=NA)+
          theme(legend.position="none")
    
    > ggplot(mpg,aes(displ,hwy,colour=factor(cyl)))+
          geom_bar(stat="identity",fill=NA)+
          theme(legend.position="none")
    
    
    > ggplot(mpg,aes(displ,hwy,colour=factor(cyl)))+
          geom_bar(stat="identity")+
          theme(legend.position="none")
    
    

    相关文章

      网友评论

          本文标题:第4章 语法突破

          本文链接:https://www.haomeiwen.com/subject/nztoldtx.html