diff --git a/documentation/figures/color_spectra_counts.png b/documentation/figures/color_spectra_counts.png index e549efbc4..b79c0fe18 100644 Binary files a/documentation/figures/color_spectra_counts.png and b/documentation/figures/color_spectra_counts.png differ diff --git a/documentation/figures/colormag_counts.png b/documentation/figures/colormag_counts.png index 3d7e05b96..da24ed98b 100644 Binary files a/documentation/figures/colormag_counts.png and b/documentation/figures/colormag_counts.png differ diff --git a/documentation/figures/photometry_counts.png b/documentation/figures/photometry_counts.png index b2513a736..a3ab68eb6 100644 Binary files a/documentation/figures/photometry_counts.png and b/documentation/figures/photometry_counts.png differ diff --git a/documentation/figures/spectra_ins_counts.png b/documentation/figures/spectra_ins_counts.png index 7940cb79e..0a76478f4 100644 Binary files a/documentation/figures/spectra_ins_counts.png and b/documentation/figures/spectra_ins_counts.png differ diff --git a/documentation/figures/spectra_sample.png b/documentation/figures/spectra_sample.png index d4c19f251..934ad431f 100644 Binary files a/documentation/figures/spectra_sample.png and b/documentation/figures/spectra_sample.png differ diff --git a/documentation/figures/spectra_telins_counts.png b/documentation/figures/spectra_telins_counts.png index 0e97e57e2..48397339b 100644 Binary files a/documentation/figures/spectra_telins_counts.png and b/documentation/figures/spectra_telins_counts.png differ diff --git a/documentation/figures/sptypes_counts.png b/documentation/figures/sptypes_counts.png index 61d700474..1c1672e57 100644 Binary files a/documentation/figures/sptypes_counts.png and b/documentation/figures/sptypes_counts.png differ diff --git a/scripts/examples/plotting_example.py b/scripts/examples/plotting_example.py index 29338685d..fa5ff78c4 100644 --- a/scripts/examples/plotting_example.py +++ b/scripts/examples/plotting_example.py @@ -191,7 +191,7 @@ if INCLUDE_VERSION: plt.title(f'SIMPLE Photometry; Version {version}') plt.yscale('log') -ax.set_xticklabels(ax.xaxis.get_majorticklabels(), rotation=90) +ax.set_xticklabels(ax.xaxis.get_majorticklabels(), rotation=90, fontsize=8) plt.tight_layout() # plt.show() plt.savefig('documentation/figures/photometry_counts.png') @@ -215,6 +215,8 @@ plt.scatter(df['spectral_type_code'], df['2MASS.J'] - df['2MASS.Ks'], alpha=0.8) plt.xlabel('Spectral Type') plt.ylabel('J-Ks (mag)') +if INCLUDE_VERSION: + plt.title(f'SIMPLE Sources; Version {version}') # Custom tick labels for spectral type ax.set_xticks([65, 70, 75, 80, 85, 90]) ax.set_xticklabels(['M5', 'L0', 'L5', 'T0', 'T5', 'Y0']) @@ -244,11 +246,13 @@ plt.scatter(df['2MASS.J'] - df['2MASS.Ks'], df['2MASS.Ks'] - df['dm'], c=df['spectral_type_code'], alpha=0.8) plt.xlabel('J-Ks (mag)') plt.ylabel('Absolute Ks (mag)') +if INCLUDE_VERSION: + plt.title(f'SIMPLE Sources; Version {version}') ax.invert_yaxis() cbar = plt.colorbar() cbar.set_label('Spectral Type') -cbar.set_ticks([65, 70, 75, 80, 85, 90]) -cbar.set_ticklabels(['M5', 'L0', 'L5', 'T0', 'T5', 'Y0']) +cbar.set_ticks([65, 70, 75, 80, 85]) +cbar.set_ticklabels(['M5', 'L0', 'L5', 'T0', 'T5']) plt.tight_layout() # plt.show() plt.savefig('documentation/figures/colormag_counts.png')