ggplot(data = <DATA>) +
<GEOM>(mapping = aes(<MAPPINGS>),
position = <POSITION>,
stat = <STAT>) +
<FACET> +
<COORD> +
<THEME>
import seaborn as sns
import matplotlib.pyplot as plt
plot = sns.<plottype>(<MAPPINGS>)
plt.show() # Show the plot (for quarto)