Skip to content

Commit

Permalink
enumerate so that C/H is actually computed in free chem post
Browse files Browse the repository at this point in the history
  • Loading branch information
wbalmer committed Apr 9, 2024
1 parent d22fafa commit ebaf07d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion species/plot/plot_mcmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def plot_posterior(
o_h_ratio = np.zeros(samples.shape[0])
c_o_ratio = np.zeros(samples.shape[0])

for sample_item in samples:
for i,sample_item in enumerate(samples):
abund_dict = {}
for line_item in line_species:
abund_dict[line_item] = sample_item[abund_index[line_item]]
Expand Down

0 comments on commit ebaf07d

Please sign in to comment.