Skip to content

Commit

Permalink
Permet de ne pas affichier le titre dans la fonction graphique plot_s…
Browse files Browse the repository at this point in the history
…tation_anomalies() si on le souhaite. Fix #45
  • Loading branch information
armgilles committed Dec 16, 2020
1 parent 127736e commit 8f1d998
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion vcub_keeper/visualisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ def plot_station_anomalies(data, clf, station_id,
end_date='',
return_data=False,
offline_plot=False,
display_title=True,
return_plot=False):
"""
Plot Time Series
Expand All @@ -184,6 +185,8 @@ def plot_station_anomalies(data, clf, station_id,
Retour le DataFrame lié à la station demandé et au contraintes de date si remplie.
offline_plot : bool [opt]
Pour exporter le graphique
display_title : bool [opt]
Afin d'afficher le titre du graphique
offline_plot : bool [opt]
Pour retourner le graphique et l'utiliser dans une application
Expand Down Expand Up @@ -282,10 +285,15 @@ def plot_station_anomalies(data, clf, station_id,
))

data_pred = data_pred.drop(['no_anomalie', 'anomaly_grp'], axis=1)

if display_title:
title = "Détection d'anomalies sur la stations N° " + str(station_id)
else:
title = None

# Design graph
layout = dict(
title="Détection d'anomalies sur la stations N° " + str(station_id),
title=title,
showlegend=True,
legend=dict(orientation="h",
yanchor="top",
Expand Down

0 comments on commit 8f1d998

Please sign in to comment.