问答详情
源自:3-9 ggplot2绘图系统之ggplot

theme_classic()不能改变主题

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


提问者:Carry_Xu 2017-05-07 14:12

个回答

  • 慕粉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()