Cara Thompson Profile picture
๐Ÿ‘‹ #Dataviz Consultant with an academic background ๐Ÿ’™ Maximising the impact of other people's expertise
Sep 16, 2022 โ€ข 6 tweets โ€ข 4 min read
Today I've mostly been building a #QuartoPub slides template. Here are 5 things (+ a question) I spent a while figuring out - some might be obvious, some are a bit hacky.
Sharing in the hope of saving other #rstats users some time!

1/5: Need to move the footer? Find footer.css! Code snippet (CSS) highlighting the .reveal .footer positionThe output: a footer banner which reaches right to the botto 2/5 Want a logo over a dark footer? footer.css is also where you can change the z-index of your logo and its padding, if you want to make it appear over the top the footer and align it as you choose. Code snippet (CSS):  .reveal .slide-logo {   display: block;
Apr 6, 2022 โ€ข 5 tweets โ€ข 3 min read
Five quick #rstats tips I've picked up in the plots I've made for the first category of the #30DayChartChallenge ๐Ÿงต๐Ÿ‘‡

1. Need to plot a million points and ggplot() is taking too long but you want to stay within the tidyverse?

๐Ÿ‘‰ Use ๐Ÿ“ฆ{scattermore} with geom_scattermore() ๐Ÿฅณ 2.Using several subplots together to tell a story and they each have their own colour scheme?

๐Ÿ‘‰ Create a function to blend in a bit of the same colour into all the others to create a more unified look Code snippet: blend <- func...