Qobs from get_hubeau_flows is not ordered chronogically
Due to missing values, the Qobs data we get from the get_hubeau_flows function are not chronogically ordered. That is not an issue for the use in the GR models, as createBasinObs does the ordering, but the plot in the vignette is ugly (see picture).
I propose adding in get_hubeau_flows the following (line 169):
df_all <- df_all[order(df_all$DatesR), ]
