theme_classic()不能改变主题

来源:3-9 ggplot2绘图系统之ggplot

Carry_Xu

2017-05-07 14:12

ggplot(airquality, aes(Wind,Temp,

                       col=factor(Month))) +

  geom_point() + 

  stat_smooth(method="lm", se=FALSE) + 

  scale_color_manual("Month", values = myColors) + 

  facet_grid(.~Month)

  theme_classic()

 主题不改变而且是下面的,也没有报错,

 $ strip.text.x         :List of 11

  ..$ family       : NULL

  ..$ face         : NULL

  ..$ colour       : NULL

  ..$ size         : NULL

  ..$ hjust        : NULL

  ..$ vjust        : NULL

  ..$ angle        : NULL

  ..$ lineheight   : NULL

  ..$ margin       :Classes 'margin', 'unit'  atomic [1:4] 5.5 0 5.5 0

  .. .. ..- attr(*, "valid.unit")= int 8

  .. .. ..- attr(*, "unit")= chr "pt"

  ..$ debug        : NULL

  ..$ inherit.blank: logi TRUE

  ..- attr(*, "class")= chr [1:2] "element_text" "element"

 $ strip.text.y         :List of 11

  ..$ family       : NULL

  ..$ face         : NULL

  ..$ colour       : NULL

  ..$ size         : NULL

  ..$ hjust        : NULL

  ..$ vjust        : NULL

  ..$ angle        : num -90

  ..$ lineheight   : NULL

  ..$ margin       :Classes 'margin', 'unit'  atomic [1:4] 0 5.5 0 5.5

  .. .. ..- attr(*, "valid.unit")= int 8

  .. .. ..- attr(*, "unit")= chr "pt"

  ..$ debug        : NULL

  ..$ inherit.blank: logi TRUE

  ..- attr(*, "class")= chr [1:2] "element_text" "element"

 $ strip.switch.pad.grid:Class 'unit'  atomic [1:1] 0.1

  .. ..- attr(*, "valid.unit")= int 1

  .. ..- attr(*, "unit")= chr "cm"

 $ strip.switch.pad.wrap:Class 'unit'  atomic [1:1] 0.1

  .. ..- attr(*, "valid.unit")= int 1

  .. ..- attr(*, "unit")= chr "cm"

 - attr(*, "class")= chr [1:2] "theme" "gg"

 - attr(*, "complete")= logi TRUE

 - attr(*, "validate")= logi TRUE


写回答 关注

1回答

  • 慕粉1437526687
    2017-05-08 16:59:22

    ggplot(airquality, aes(Wind,Temp,

                           col=factor(Month))) +

      geom_point() + 

      stat_smooth(method="lm", se=FALSE) + 

      scale_color_manual("Month", values = myColors) + 

      facet_grid(.~Month) +      ################   这里有一个【加】号

      theme_classic()


    Carry_...

    谢了~

    2017-05-08 21:35:58

    共 1 条回复 >

R语言之数据可视化

R语言三大绘图系统,用图形直观探索数据、发现有价值信息

39089 学习 · 137 问题

查看课程

相似问题