Template for qmd presenations
Project description
brandtemplate
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.
Installation
Install the package via pip install brandtemplate
Usage
Add the quarto template to a project
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
Plotnine helper functions
Add theme to graph
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
)
Add standard titles 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'
)
Add complex titles to the graph
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']
)
Recolour axis labels
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'
)
Features
Quarto template
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.
plotnine helper functions
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.
great-tables helper functions
To be added.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file brandtemplate-0.1.4.tar.gz
.
File metadata
- Download URL: brandtemplate-0.1.4.tar.gz
- Upload date:
- Size: 829.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.11 Darwin/23.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84e1e9931484770ec285126b5729d01c6d58ce9a040c59716de3c5e9d2c2405d |
|
MD5 | 988aca3daa9c5a0dbc81e9f17aed8a10 |
|
BLAKE2b-256 | c753e1be58c82acc7c366241f762e650a0b7d00174ee1e83e33a2b24aa5be732 |
File details
Details for the file brandtemplate-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: brandtemplate-0.1.4-py3-none-any.whl
- Upload date:
- Size: 832.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.11 Darwin/23.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a39c4171644055a1759a2d48569618d184df1329b3c28e6683ed95ac7bdcb9b |
|
MD5 | c2820333cc4b19b60d0c290a8db6fc0e |
|
BLAKE2b-256 | 1b4004a278c4e6ed1db4b23be49b8eb8f89f40529880cc91740540d1e9974748 |