You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xticks= [data_date[i] if ((i%config["plots"]["xticks_interval"]==0and (num_data_points-i) >config["plots"]["xticks_interval"]) ori==num_data_points-1) elseNoneforiinrange(num_data_points)] # make x ticks nice
xticks= [to_plot_data_date[i] if ((i%int(config["plots"]["xticks_interval"]/5)==0and (len(to_plot_data_date)-i) >config["plots"]["xticks_interval"]/6) ori==len(to_plot_data_date)-1) elseNoneforiinrange(len(to_plot_data_date))] # make x ticks nice
plt.plot(plot_date_test, to_plot_data_y_test_pred, label="Predicted price for next day", marker=".", markersize=20, color=config["plots"]["color_pred_test"])
381
381
plt.title("Predicting the close price of the next trading day")
0 commit comments