Skip to content
Snippets Groups Projects
Commit 67aa9e90 authored by Alexander Shervud's avatar Alexander Shervud
Browse files

Styling, Edited Config, Added Changes to ipynb

parent 9f6f87cc
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -12,9 +12,9 @@ sphinx_theme: alabaster
# IMPLEMENTED
# Plotter fontsize configuration
plotter_fontsize: 18
plotter_title_fontsize: 18
plotter_fontweight: 600
plotter_title_fontweight: 600
#----------------------------------------
# TO DO
......
......@@ -35,12 +35,12 @@ class Plotter:
Returns:
None
"""
if styling_params.get("title"):
ax.set_title(
styling_params["title"],
fontsize=parameters["plotter_fontsize"],
fontweight=parameters["plotter_fontweight"]
fontsize=parameters["plotter_title_fontsize"],
fontweight=parameters["plotter_title_fontweight"]
)
def distribution_plot(self, target, styling_params={}) -> None:
......@@ -80,7 +80,7 @@ class Plotter:
ax.set_xlabel("Size")
ax.set_ylabel(target)
self.customize_plot(fig, ax, styling_params)
def plot_categorical_bar_chart(
self, category1, category2, styling_params={}
) -> None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment