美文网首页
常用命令存储

常用命令存储

作者: M78_a | 来源:发表于2023-10-02 00:26 被阅读0次

    ggsave保存ggplot画图的文件

    p1 = ggplot(penguins,
     aes(x = bill_length_mm, y = bill_depth_mm, color = sex)) +
      geom_point(aes(color = species))+
      theme_bw()
    
    ggsave(p1,
           filename = "my_first_plot.pdf",
           height = 4.95,
           width = 6.04,
           dpi = 300)
    

    相关文章

      网友评论

          本文标题:常用命令存储

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