complex_figure_examples icon indicating copy to clipboard operation
complex_figure_examples copied to clipboard

include watermark on bottom

Open sdtaylor opened this issue 4 years ago • 1 comments

Link to this repo

"This figure is a replication for educational purposes" "The data may not match the original "see https://github.com/sdtaylor/complex_figure_examples"

maybe a giant watermark of: "Example figure. Not made with real data. For educational purposes only." "see https://github.com/sdtaylor/complex_figure_examples"

sdtaylor avatar May 06 '20 22:05 sdtaylor

watermark code

water_mark = 'Example figure for educational purposes only. Not made with real data.\n See github.com/sdtaylor/complex_figure_examples'

final_figure = ggdraw(final_figure) +
  geom_rect(data=data.frame(xmin=0.05,ymin=0.05), aes(xmin=xmin,ymin=ymin, xmax=xmin+0.4,ymax=ymin+0.1),alpha=0.9, fill='grey90', color='black') + 
  draw_text(water_mark, x=0.05, y=0.1, size=10, hjust = 0)

sdtaylor avatar May 09 '20 20:05 sdtaylor