Adjust image size to be correct
This commit is contained in:
parent
e3631eec6b
commit
7d7e106ac5
47 changed files with 2 additions and 2 deletions
|
@ -335,7 +335,7 @@ def generate_plot(plot_config):
|
|||
for data_process_step in plot_config.get('data_processing_steps', []):
|
||||
perform_processing_step(data_process_step, plot_data, plot_config)
|
||||
|
||||
fig = plt.figure() #figsize=(10, 3.5));
|
||||
fig = plt.figure(figsize=(4, 2.8)) #figsize=(10, 3.5));
|
||||
|
||||
if(plot_config['type'] == 'lt_sweep'):
|
||||
plot_lt_sweep(fig, plot_config, plot_data);
|
||||
|
@ -343,7 +343,7 @@ def generate_plot(plot_config):
|
|||
if(plot_config['type'] == 'single'):
|
||||
plot_single_graph(fig, plot_config, plot_data);
|
||||
|
||||
fig.subplots_adjust(0.15, 0.12, 0.96, 0.9)
|
||||
fig.subplots_adjust(0.16, 0.18, 0.96, 0.9)
|
||||
|
||||
fig.savefig(os.path.join(YAML_DIR, plot_config['ofile']), dpi=plot_config.get('dpi', 300));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue