From 8e67a917cdff381d78d1a79e611fd890ddc14a25 Mon Sep 17 00:00:00 2001 From: Stacey Syphus Date: Mon, 17 Feb 2025 23:22:12 +0000 Subject: [PATCH 1/3] Remove temp files --- By Topic/Utility Macros/tmp.sas | 1 - By Topic/tmp.sas | 0 2 files changed, 1 deletion(-) delete mode 100644 By Topic/Utility Macros/tmp.sas delete mode 100644 By Topic/tmp.sas diff --git a/By Topic/Utility Macros/tmp.sas b/By Topic/Utility Macros/tmp.sas deleted file mode 100644 index 3602361..0000000 --- a/By Topic/Utility Macros/tmp.sas +++ /dev/null @@ -1 +0,0 @@ -temp \ No newline at end of file diff --git a/By Topic/tmp.sas b/By Topic/tmp.sas deleted file mode 100644 index e69de29..0000000 From c9fd070ca4ea87df65cd1326980141a071080fed Mon Sep 17 00:00:00 2001 From: Stacey Syphus Date: Tue, 18 Feb 2025 18:53:16 +0000 Subject: [PATCH 2/3] Add a comment Signed-off-by: ssyphi --- .../Compute new columns with expressions and functions.sas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/By Syntax/DATA Step/Compute new columns with expressions and functions.sas b/By Syntax/DATA Step/Compute new columns with expressions and functions.sas index cc46b53..44593c3 100644 --- a/By Syntax/DATA Step/Compute new columns with expressions and functions.sas +++ b/By Syntax/DATA Step/Compute new columns with expressions and functions.sas @@ -32,3 +32,5 @@ title "First 10 Rows of CARS_NEW"; proc print data=cars_new(obs=10); run; title; + +/* END */ From ca643a34aec128e96466f6df57c4c2eff8fd559c Mon Sep 17 00:00:00 2001 From: Stacey Syphus Date: Tue, 18 Feb 2025 19:09:38 +0000 Subject: [PATCH 3/3] Add a comment Signed-off-by: ssyphi --- By Syntax/FREQ Procedure/1_Basic Frequency Reports.sas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/By Syntax/FREQ Procedure/1_Basic Frequency Reports.sas b/By Syntax/FREQ Procedure/1_Basic Frequency Reports.sas index 57ccd91..3e8aaca 100644 --- a/By Syntax/FREQ Procedure/1_Basic Frequency Reports.sas +++ b/By Syntax/FREQ Procedure/1_Basic Frequency Reports.sas @@ -28,3 +28,5 @@ proc freq data=sashelp.cars; tables type*origin; /*3*/ run; title; + +/* END */