Skip to content

Commit

Permalink
changed x and y labels
Browse files Browse the repository at this point in the history
  • Loading branch information
kylajones committed Jun 6, 2024
1 parent 5f2c87d commit 055be6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linfa/plot_res.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def plot_params(param_data,LL_data,idx1,idx2,out_dir,out_info,fig_format='png',

# Plot figure
plt.figure()
plt.scatter(param_data[:,idx1], param_data[:,idx2]/1000, lw = 0, s =7, marker = 'o', c = np.exp(dent_data))
plt.scatter(param_data[:,idx1], param_data[:,idx2], lw = 0, s =7, marker = 'o', c = np.exp(dent_data))

#plt.plot(1000, -21.0, 'r*')
plt.colorbar()
Expand Down

0 comments on commit 055be6e

Please sign in to comment.