Skip to content

Commit

Permalink
Fix title of intertable trends
Browse files Browse the repository at this point in the history
  • Loading branch information
lajohn4747 committed Oct 24, 2023
1 parent bc92a5e commit 014dd5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def get_visualization(self, table_name=None):
to_plot,
x='Columns',
y='Score',
title=f'Data Quality: Column Shapes (Average Score={average_score})',
title=f'Data Quality: Intertable Trends (Average Score={average_score})',
category_orders={'group': to_plot['Columns']},
color='Metric',
color_discrete_map={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def test_get_visualization(plotly_mock):
DataFrameMatcher(expected_plot_df),
x='Columns',
y='Score',
title='Data Quality: Column Shapes (Average Score=1.0)',
title='Data Quality: Intertable Trends (Average Score=1.0)',
category_orders={'group': SeriesMatcher(expected_plot_df['Columns'])},
color='Metric',
color_discrete_map={
Expand Down Expand Up @@ -270,7 +270,7 @@ def test_get_visualization_multiple_relationships(plotly_mock):
DataFrameMatcher(expected_plot_df),
x='Columns',
y='Score',
title='Data Quality: Column Shapes (Average Score=0.75)',
title='Data Quality: Intertable Trends (Average Score=0.75)',
category_orders={'group': SeriesMatcher(expected_plot_df['Columns'])},
color='Metric',
color_discrete_map={
Expand Down

0 comments on commit 014dd5c

Please sign in to comment.