美文网首页
将ggplot2作图代码写到函数里简单小例子

将ggplot2作图代码写到函数里简单小例子

作者: 小明的数据分析笔记本 | 来源:发表于2022-09-26 22:14 被阅读0次
    library(ggplot2)
    library(magrittr)
    
    scatterplot<-function(df,var1,var2){
      df %>% 
        ggplot(aes(x={{var1}},y={{var2}}))+
        geom_point()
    }
    
    
    df<-data.frame(x1=1:10,x2=1:10)
    scatterplot(df,x1,x2)
    
    

    相关文章

      网友评论

          本文标题:将ggplot2作图代码写到函数里简单小例子

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