ggplot2 - R ggplot geom_tile without fill color -
i trying add geom_tile layer plot without filled color (just outline). there way transparent tile boundary visible?
thanks
i think after alpha parameter. minimal example:
create plot dummy data set
color(for "boundary") , nofill:p <- ggplot(pp(20)[sample(20*20, size=200), ], aes(x = x, y = y, color = z))add
geom_tile()alphasetzero:p <- geom_tile(alpha=0)add
theme_bw()transparent tiles lame dark gray background :)p + theme_bw()

Comments
Post a Comment