From f8f5ec3d10f9b564407dbf9f080775dced32e04a Mon Sep 17 00:00:00 2001 From: georgm8 <102156640+georgm8@users.noreply.github.com> Date: Thu, 9 Feb 2023 13:56:44 +0000 Subject: [PATCH] Fix to typo in the code example df_features rather than df passed to validate_dataframe() on 2nd pass in the code example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 238fe76..33986c8 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ df_features = build_admitted_care_features(good) # Second validation step using Feature Schema # Review and fix DQ issues. # This may require returning to the first validation step or even extraction. -good_f, bad_f = validate_dataframe(df, AdmittedCareFeatureSchema) +good_f, bad_f = validate_dataframe(df_features, AdmittedCareFeatureSchema) # Use the good_f dataframe for analysis as required by lead site ```