Amount Withdrawn Model Part 3

# for bar_table in exploration_dict['bar_tables']:
#     bar_table.plot(kind='bar')
    
fig, axes = plt.subplots(nrows=5, ncols=5, figsize=(30, 30))
for idx, feat in enumerate(exploration_dict['bar_tables']):
    style.use('seaborn-whitegrid')
    ax = axes[int(idx / 4), idx % 4]
    feat.T.plot(kind ='bar',ax=ax)
    ax.set_xlabel('')
    ax.set_ylabel('')
fig.tight_layout();


for bar_table in exploration_dict['bar_tables']:
    bar_table.plot(kind='bar')
for idx, feat in enumerate(exploration_dict['bar_tables']):
    if 'count' not in feat.columns:
        feat.T.plot(kind ='bar',figsize=(10, 15))
 

Comments

Popular posts from this blog

Amount Withdrawn Model Part 2

Hybrid Recommendation Engine

Amount Withdrawn Model Part 1