更改ggplot的背景颜色

时间:2018-11-07 11:42:48

标签: r ggplot2

我需要更改绘图背景的颜色,但是这样做有问题。我可以更改绘图区域的颜色,但是不能更改所有绘图的颜色。 可以说我有以下数据:

filename = '/path/maya_deadline_job.job'
file_out=''
with open(filename,'r') as fh:
    all_lines = fh.readlines()
    for line in all_lines:
        if 'SceneFile=' in line:
            file_out.append('SceneFile=mynewpath')
        elif...
        else:
            file_out.append(line)
    fh.write(file_out)

然后创建情节:

genderDistribution <- data.frame(gender = c('males','females'),
                       distribution = c(75,25))

enter image description here

我需要的是所有区域(包括标题,轴标题)的颜色为ggplot(genderDistribution, aes(x=gender, y=distribution)) + geom_bar(stat = 'identity') + ggtitle("Gender distribution") + theme(panel.background = element_rect(colour = "gray87", fill = "gray87")) 。我该怎么办?

0 个答案:

没有答案