Enable the creation of Quarto branded presentations to share the output of your python based analysis to stakeholders. To create your own branded template from this base see the repo on github for how to easily customise this to be used with your own branding.
The template uses plotnine and great-tables to create graphs and tables and has themes for both of these that go with the quarto template.
The template uses the presoutput package (PYPI or github) to convert the .qmd files into either PDF or PPTX documents that can be shared with stakeholders.
Install the package via pip install brandtemplate
Run the following command via command line to import the template into the current working directory.
brandtemplate-import
This command has the following optional arguments:
-n
or--name
: Renames the qmd file when importing the template. Defaults to "template.qmd" if omitted.-d
or--directory
: Specifies what directory to copy the template into. Defaults to the current working directory if omitted.
The below line of code would create a qmd file called presentation.qmd
in the output
folder within the current directory and would copy all the files needed for the template into _extensions/brandtemplate
.
brandtemplate-import -n presentation.qmd -d output
from plotnine import *
from plotnine.data import mpg
from brandtemplate import brandtemplate_plotnine_theme #import theme function
(
ggplot(mpg, aes(x='class')) +
geom_bar() +
scale_y_continuous(expand=(0,0)) +
brandtemplate_plotnine_theme() #adds base formatting theme to graph
)
from plotnine import *
from plotnine.data import mpg
from brandtemplate import brandtemplate_plotnine_theme, plotnine_titles
graph = (
ggplot(mpg, aes(x='class')) +
geom_bar() +
scale_y_continuous(expand=(0,0)) +
brandtemplate_plotnine_theme()
)
#add titles to the graph
plotnine_titles(
graph,
title='The graph title goes here',
subtitle='The subtitle goes here',
caption='The graph caption goes here'
)
The below example shows how can add mutiple colours to the title of a graph but the same can be done for the subtitle and caption and for the colour and size of each title.
from plotnine import *
from plotnine.data import mpg
from brandtemplate import brandtemplate_plotnine_theme, plotnine_titles
graph = (
ggplot(mpg, aes(x='class')) +
geom_bar() +
scale_y_continuous(expand=(0,0)) +
brandtemplate_plotnine_theme()
)
plotnine_titles(
graph,
title=['The graph title is ', 'partially red', ' coloured'],
title_color=['black', 'red', 'black']
)
from plotnine import *
from plotnine.data import mpg
from brandtemplate import brandtemplate_plotnine_theme, plotnine_coloured_axis_labels
graph = (
ggplot(mpg, aes(x='class')) +
geom_bar() +
scale_y_continuous(expand=(0,0)) +
brandtemplate_plotnine_theme()
)
plotnine_coloured_axis_labels(
graph,
label_color_dict={'compact':'blue', 'suv':'red'},
axis='X'
)
The quarto template has been designed to match your current brand presentation theme so that you can focus on the content rather than having to focus on the formatting.
- New slides are created by creating a H2 in the qmd file (using
## Slide title goes here
). - To create a section divider slide you can add the following line
## Slide title goes here {.section-slide}
- To create a final thank you slide you can add the following line
## Thank you {.thank-you-slide}
- Multiple columns can be created using the following code:
:::: {.columns} ::: {.column width="50%"} Left column ::: ::: {.column width="50%"} Right column ::: ::::
See full documentation on revealjs in quarto here.
Once ready to share then can use the presoutput package (PYPI or github) to convert the file to either PDF or PPTX format.
The following functions are available for use with the template
- brandtemplate_plotnine_theme: A base theme for plotnine graphs that removes a lot of the unnecessary elements.
- plotnine_titles: Create better titles for plotnine including being left aligned to the graph and the ability to recolour / resize different parts of a title.
- plotnine_text: Add text anywhere on the graph. The text can have multiple colours, size, weight, style.
- plotnine_coloured_axis_labels: Recolour individual axis labels to highlight a data point on your graph.
To be added.