关于ggplot2主题设置的问题
手抄《R语言实战》中的主题设置代码,不知道为什么老是报错,代码如下:
library(ggplot2)
data(Salaries, package='car')
mytheme<-(plot.title=element_text(face='bold.italic',size=14,color='brown',hjust=0.5),
axis.title=element_text(face='bold.italic',size='10',color='brown'),
axis.text=element_text(face='bold.italic',size='9',color='darkblue'),
panel.background=element_rect(fill='white',color='darkblue'),
panel.grid.major.y=elemnt_line(color='grey',linetype=1),
panel.grid.minor.y=element_line(color='grey', linetype=2),
panel.grid.minor.x=element_blank())
ggplot(Salaries, aes(x=rank,y=salary,fill=sex)) +
geom_boxplot() +
labs(title='Salary by Rank and Sex',x='RANK',y='Salary') +
mytheme
报错信息如下:
> source('~/.active-rstudio-document')
Error in source("~/.active-rstudio-document") :
~/.active-rstudio-document:18:86: unexpected ','
17:
18: mytheme<-(plot.title=element_text(face='bold.italic',size=14,color='brown',hjust=0.5),
^
逗号也没有错啊,是英文的,请问到底是哪里错了,谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
漏了theme(),犯了个2b错误。。。