在这里我有theme_light()
,但在情节中我仍然有 x/y 轴和图例 + 网格。我想删除那些,只有我的浅色背景+情节'pic'。当我使用theme_void
-> 时,它会删除图例,但背景是无效的。知道如何解决这个问题,所以我只有一个白色背景和我的情节吗?
pic <- ggplot(data = art_dat, mapping = aes(x = x, y = y, group = path_id,
color = step_id)
) +
geom_path(
size = .9,
alpha = 1000, #transparency of the lines
show.legend = FALSE
) +
coord_equal() +
theme_light() +
scale_color_scico(palette = "berlin")