Commit cdc6dc8b authored by Le Roux Erwan's avatar Le Roux Erwan
Browse files

[HYPERCUBE VISUALIZER] fix big issue with respect to the "best year", take the...

[HYPERCUBE VISUALIZER] fix big issue with respect to the "best year", take the year that minimizes the nllh
parent 7e9d0625
No related merge requests found
Showing with 8 additions and 6 deletions
+8 -6
...@@ -118,7 +118,8 @@ class AltitudeHypercubeVisualizer(AbstractHypercubeVisualizer): ...@@ -118,7 +118,8 @@ class AltitudeHypercubeVisualizer(AbstractHypercubeVisualizer):
# Figure title # Figure title
specific_title += '\n' specific_title += '\n'
trend_types = [AbstractUnivariateTest.SIGNIFICATIVE_ALL_TREND, trend_types = [AbstractUnivariateTest.ALL_TREND,
AbstractUnivariateTest.SIGNIFICATIVE_ALL_TREND,
AbstractUnivariateTest.SIGNIFICATIVE_POSITIVE_TREND, AbstractUnivariateTest.SIGNIFICATIVE_POSITIVE_TREND,
AbstractUnivariateTest.SIGNIFICATIVE_NEGATIVE_TREND] AbstractUnivariateTest.SIGNIFICATIVE_NEGATIVE_TREND]
series = [trend_type_to_series[trend_type][0] for trend_type in trend_types] series = [trend_type_to_series[trend_type][0] for trend_type in trend_types]
...@@ -126,7 +127,7 @@ class AltitudeHypercubeVisualizer(AbstractHypercubeVisualizer): ...@@ -126,7 +127,7 @@ class AltitudeHypercubeVisualizer(AbstractHypercubeVisualizer):
percents = [round(p) for p in percents] percents = [round(p) for p in percents]
specific_title += 'Total ' if xlabel == STARTING_YEARS_XLABEL else 'Mean ' specific_title += 'Total ' if xlabel == STARTING_YEARS_XLABEL else 'Mean '
specific_title += 'of significative trends: {} (+:{} -{})'.format(*percents) specific_title += 'all trend {}, all significative trends: {} (+:{} -{})'.format(*percents)
plt.suptitle(specific_title) plt.suptitle(specific_title)
self.show_or_save_to_file(specific_title=specific_title) self.show_or_save_to_file(specific_title=specific_title)
......
...@@ -74,12 +74,12 @@ def fast_altitude_hypercube(): ...@@ -74,12 +74,12 @@ def fast_altitude_hypercube():
def fast_altitude_year_hypercube(): def fast_altitude_year_hypercube():
save_to_file = True save_to_file = False
only_first_one = False only_first_one = False
nb_data_reduced_for_speed = True nb_data_reduced_for_speed = True
altitudes = [ALL_ALTITUDES[3], ALL_ALTITUDES[-7]] altitudes = [ALL_ALTITUDES[3], ALL_ALTITUDES[-7]]
for study_class in SCM_STUDIES[:1]: for study_class in SCM_STUDIES[:1]:
for last_starting_year in [1989, 1999]: for last_starting_year in [None, 1989, 1999][:1]:
for trend_test_class in [GevLocationChangePointTest, GevScaleChangePointTest, GevShapeChangePointTest][:1]: for trend_test_class in [GevLocationChangePointTest, GevScaleChangePointTest, GevShapeChangePointTest][:1]:
visualizers = [StudyVisualizer(study, temporal_non_stationarity=True, verbose=False, multiprocessing=True) visualizers = [StudyVisualizer(study, temporal_non_stationarity=True, verbose=False, multiprocessing=True)
for study in study_iterator(study_class=study_class, only_first_one=only_first_one, for study in study_iterator(study_class=study_class, only_first_one=only_first_one,
...@@ -102,7 +102,7 @@ def full_altitude_year_hypercube(): ...@@ -102,7 +102,7 @@ def full_altitude_year_hypercube():
for study_class in SCM_STUDIES[:1]: for study_class in SCM_STUDIES[:1]:
for trend_test_class in [GevLocationChangePointTest, GevScaleChangePointTest, for trend_test_class in [GevLocationChangePointTest, GevScaleChangePointTest,
GevShapeChangePointTest][:1]: GevShapeChangePointTest][:1]:
for last_starting_year in [1967, 1977, 1987, 1997, 2007, None]: for last_starting_year in [1967, 1977, 1987, 1997, 2007, None][-2::-1]:
visualizers = [ visualizers = [
StudyVisualizer(study, temporal_non_stationarity=True, verbose=False, multiprocessing=True) StudyVisualizer(study, temporal_non_stationarity=True, verbose=False, multiprocessing=True)
for study in study_iterator(study_class=study_class, only_first_one=only_first_one, for study in study_iterator(study_class=study_class, only_first_one=only_first_one,
......
...@@ -411,8 +411,9 @@ class StudyVisualizer(object): ...@@ -411,8 +411,9 @@ class StudyVisualizer(object):
self.compute_gev_change_point_test_result(smooth_maxima, starting_year, trend_test_class, years) self.compute_gev_change_point_test_result(smooth_maxima, starting_year, trend_test_class, years)
for starting_year in starting_years] for starting_year in starting_years]
# Keep only the most likely starting year # Keep only the most likely starting year
# (i.e. the starting year that minimizes its negative log likelihood)
# (set all the other data to np.nan so that they will not be taken into account in mean function) # (set all the other data to np.nan so that they will not be taken into account in mean function)
best_idx = list(np.argmax(trend_test_res, axis=0))[2] best_idx = list(np.argmin(trend_test_res, axis=0))[2]
# print(best_idx, trend_test_res) # print(best_idx, trend_test_res)
best_idxs = [best_idx] best_idxs = [best_idx]
# todo: by doing a sorting on the deviance, I could get the nb_top_likelihood_values values # todo: by doing a sorting on the deviance, I could get the nb_top_likelihood_values values
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment