From 1150d210222614937c636364b229a6ff6112ced8 Mon Sep 17 00:00:00 2001 From: dullahh Date: Sun, 7 Sep 2025 00:20:52 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20undefined=20variable=20in=20getti?= =?UTF-8?q?ng-started=20example=20(x2=5Fval=20=E2=86=92=20x=5Fvalid)=20so?= =?UTF-8?q?=20that=20correct=20visualisation=20is=20obtained?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/getting-started/quickstart-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/getting-started/quickstart-guide.md b/docs/en/getting-started/quickstart-guide.md index a58340a5..79f8f955 100644 --- a/docs/en/getting-started/quickstart-guide.md +++ b/docs/en/getting-started/quickstart-guide.md @@ -216,7 +216,7 @@ ee = compute_residues_autocorrelation(y_valid, yhat) plot_residues_correlation(data=ee, title="Residues", ylabel="$e^2$") # Compute and plot cross-correlation between residuals and an input -x1e = compute_cross_correlation(y_valid, yhat, x2_val) +x1e = compute_cross_correlation(y_valid, yhat, x_valid)#The final argument was previously x2_val, which was not defined in the example. Updated it to x_valid (the correct validation input) so the code runs without errors. plot_residues_correlation(data=x1e, title="Residues", ylabel="$x_1e$") ```