YchKhan commited on
Commit
3643d7a
1 Parent(s): d3336a3

Update chart_generation.py

Browse files
Files changed (1) hide show
  1. chart_generation.py +1 -1
chart_generation.py CHANGED
@@ -18,7 +18,7 @@ def create_bar_plot(file, x_values, y_values):
18
  plt.ylabel('Count')
19
  else:
20
  count_df = df.groupby(['Simple_Source', y_values]).size().unstack(fill_value=0)
21
- fig, ax = plt.subplots(figsize=(12, 7))
22
 
23
  count_df.plot(kind='bar', stacked=True, ax=ax)
24
 
 
18
  plt.ylabel('Count')
19
  else:
20
  count_df = df.groupby(['Simple_Source', y_values]).size().unstack(fill_value=0)
21
+ fig, ax = plt.subplots(figsize=(16, 7))
22
 
23
  count_df.plot(kind='bar', stacked=True, ax=ax)
24