Skip to content

Commit

Permalink
Move PlotConfig to visualization.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed Oct 13, 2023
1 parent 2ba5f68 commit cca03b9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions copulas/visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@
from copulas.utils2 import PlotConfig


class PlotConfig:
"""Custom plot settings for visualizations."""

GREEN = '#36B37E'
RED = '#FF0000'
ORANGE = '#F16141'
DATACEBO_DARK = '#000036'
DATACEBO_GREEN = '#01E0C9'
DATACEBO_BLUE = '#03AFF1'
BACKGROUND_COLOR = '#F5F5F8'
FONT_SIZE = 18

def _generate_column_bar_plot(real_data, synthetic_data, plot_kwargs={}):
"""Generate a bar plot of the real and synthetic data.
Expand Down

0 comments on commit cca03b9

Please sign in to comment.