mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2026-01-09 16:00:06 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0bd4f69209 |
14
README.md
14
README.md
@@ -8,9 +8,9 @@ The *purpose of a package* is to be a simple, and easy to access, code sharing m
|
|||||||
|
|
||||||
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20201101`**.
|
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20201101`**.
|
||||||
|
|
||||||
To get started with SAS Packages try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/master/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory).
|
To get started with SAS Packages try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory).
|
||||||
|
|
||||||
The documentation and more advance reading would be the [**`SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf`**](https://github.com/yabwon/SAS_PACKAGES/blob/master/SPF/Documentation/SAS(r)%20packages%20-%20the%20way%20to%20share%20(a%20how%20to)-%20Paper%204725-2020%20-%20extended.pdf "SAS packages - the way to share") article (see the `./SPF/Documentation` directory).
|
The documentation and more advance reading would be the [**`SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/SAS(r)%20packages%20-%20the%20way%20to%20share%20(a%20how%20to)-%20Paper%204725-2020%20-%20extended.pdf "SAS packages - the way to share") article (see the `./SPF/Documentation` directory).
|
||||||
|
|
||||||
**General overview video:**
|
**General overview video:**
|
||||||
- [SAS Global Forum 2020 V.E.](https://www.youtube.com/watch?v=qCkb-bx0Dv8&t=0s "SGF2020") (April 2020)
|
- [SAS Global Forum 2020 V.E.](https://www.youtube.com/watch?v=qCkb-bx0Dv8&t=0s "SGF2020") (April 2020)
|
||||||
@@ -40,7 +40,7 @@ or if you need it just for "one time" only Execute:
|
|||||||
|
|
||||||
```
|
```
|
||||||
filename packages "%sysfunc(pathname(work))"; /* setup temporary directory for packages in the WORK */
|
filename packages "%sysfunc(pathname(work))"; /* setup temporary directory for packages in the WORK */
|
||||||
filename SPFinit url "https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/SPF/SPFinit.sas";
|
filename SPFinit url "https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/SPF/SPFinit.sas";
|
||||||
%include SPFinit; /* enable the framework */
|
%include SPFinit; /* enable the framework */
|
||||||
|
|
||||||
%installPackage(packageName) /* install the package */
|
%installPackage(packageName) /* install the package */
|
||||||
@@ -52,7 +52,7 @@ filename SPFinit url "https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/mast
|
|||||||
|
|
||||||
### The Developer:
|
### The Developer:
|
||||||
To create your own package:
|
To create your own package:
|
||||||
- Read the [**`SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf`**](https://github.com/yabwon/SAS_PACKAGES/blob/master/SPF/Documentation/SAS(r)%20packages%20-%20the%20way%20to%20share%20(a%20how%20to)-%20Paper%204725-2020%20-%20extended.pdf "SAS packages - the way to share") to learn more details.
|
- Read the [**`SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/SAS(r)%20packages%20-%20the%20way%20to%20share%20(a%20how%20to)-%20Paper%204725-2020%20-%20extended.pdf "SAS packages - the way to share") to learn more details.
|
||||||
- Download and use the `SPFinit.sas` file (the SAS Packages Framework), the part of the framework required for *testing* is there too.
|
- Download and use the `SPFinit.sas` file (the SAS Packages Framework), the part of the framework required for *testing* is there too.
|
||||||
|
|
||||||
#### If you have any questions, suggestions, or ideas do not hesitate to contact me!
|
#### If you have any questions, suggestions, or ideas do not hesitate to contact me!
|
||||||
@@ -82,7 +82,7 @@ Currently the following packages are available (see the `./packages` directory):
|
|||||||
```
|
```
|
||||||
SHA256 digest for SQLinDS: 135DC50C0412B8CEAF6D5349B8A203C0ADB23D4F5C2680B6A35FD2E5482B6C49
|
SHA256 digest for SQLinDS: 135DC50C0412B8CEAF6D5349B8A203C0ADB23D4F5C2680B6A35FD2E5482B6C49
|
||||||
|
|
||||||
[Documentation for SQLinDS](https://github.com/yabwon/SAS_PACKAGES/blob/master/packages/sqlinds.md "Documentation for SQLinDS")
|
[Documentation for SQLinDS](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/sqlinds.md "Documentation for SQLinDS")
|
||||||
|
|
||||||
- **MacroCore**\[1\], a macro library for SAS application developers. Over 100 macros for Base SAS, metadata, and Viya. Provided by the [SASjs framework](https://sasjs.io "SASjs framework").
|
- **MacroCore**\[1\], a macro library for SAS application developers. Over 100 macros for Base SAS, metadata, and Viya. Provided by the [SASjs framework](https://sasjs.io "SASjs framework").
|
||||||
|
|
||||||
@@ -116,7 +116,7 @@ SHA256 digest for DFA: E67A0863992722A5F535F56E14EF8D19A55F74FB374447BF11B5ED740
|
|||||||
```
|
```
|
||||||
SHA256 digest for macroArray: 75056F508E96296DC50096BBB054C58334DB913AD37885958099EDCE0C330CB2
|
SHA256 digest for macroArray: 75056F508E96296DC50096BBB054C58334DB913AD37885958099EDCE0C330CB2
|
||||||
|
|
||||||
[Documentation for macroArray](https://github.com/yabwon/SAS_PACKAGES/blob/master/packages/macroarray.md "Documentation for macroArray")
|
[Documentation for macroArray](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/macroarray.md "Documentation for macroArray")
|
||||||
|
|
||||||
|
|
||||||
- **BasePlus**\[0.8\] adds a bunch of functionalities I am missing in BASE SAS, such as:
|
- **BasePlus**\[0.8\] adds a bunch of functionalities I am missing in BASE SAS, such as:
|
||||||
@@ -135,7 +135,7 @@ format x bool.;
|
|||||||
```
|
```
|
||||||
SHA256 digest for BasePlus: 9549378E5F81DA4DC421C366DF006D270261852336CE3DCD88FF8E2A759938C8
|
SHA256 digest for BasePlus: 9549378E5F81DA4DC421C366DF006D270261852336CE3DCD88FF8E2A759938C8
|
||||||
|
|
||||||
[Documentation for BasePlus](https://github.com/yabwon/SAS_PACKAGES/blob/master/packages/baseplus.md "Documentation for BasePlus")
|
[Documentation for BasePlus](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/baseplus.md "Documentation for BasePlus")
|
||||||
|
|
||||||
- **dynMacroArray**\[0.2\], set of macros (wrappers for a hash table) emulating dynamic array in the data step (macro predecessor of DFA)
|
- **dynMacroArray**\[0.2\], set of macros (wrappers for a hash table) emulating dynamic array in the data step (macro predecessor of DFA)
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -21,9 +21,9 @@ The *purpose of a package* is to be a simple, and easy to access, code sharing m
|
|||||||
|
|
||||||
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20201101`**.
|
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20201101`**.
|
||||||
|
|
||||||
**To get started with SAS Packages** try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/master/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory).
|
**To get started with SAS Packages** try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory).
|
||||||
|
|
||||||
**The documentation and more advance reading** would be the [**`SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf`**](https://github.com/yabwon/SAS_PACKAGES/blob/master/SPF/Documentation/SAS(r)%20packages%20-%20the%20way%20to%20share%20(a%20how%20to)-%20Paper%204725-2020%20-%20extended.pdf "SAS packages - the way to share") article (see the `./SPF/Documentation` directory).
|
**The documentation and more advance reading** would be the [**`SAS(r) packages - the way to share (a how to)- Paper 4725-2020 - extended.pdf`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/SAS(r)%20packages%20-%20the%20way%20to%20share%20(a%20how%20to)-%20Paper%204725-2020%20-%20extended.pdf "SAS packages - the way to share") article (see the `./SPF/Documentation` directory).
|
||||||
|
|
||||||
|
|
||||||
*Note:* Filenames references `packages` and `package` are reserved keywords.
|
*Note:* Filenames references `packages` and `package` are reserved keywords.
|
||||||
@@ -60,15 +60,15 @@ After assigning the directory do not change them when using the SPF since it may
|
|||||||
then the framework itself is downloaded.
|
then the framework itself is downloaded.
|
||||||
|
|
||||||
- `sourcePath=` Location of the package, e.g. "www.some.web.page/" (mind the "/" at the end of the path!) <br>
|
- `sourcePath=` Location of the package, e.g. "www.some.web.page/" (mind the "/" at the end of the path!) <br>
|
||||||
Current default location for packages is: <br> `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/packages/` <br>
|
Current default location for packages is: <br> `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/packages/` <br>
|
||||||
Current default location for the framework is: <br> `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/SPF/`
|
Current default location for the framework is: <br> `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/SPF/`
|
||||||
|
|
||||||
- `replace=` With default value of `1` it causes existing package file
|
- `replace=` With default value of `1` it causes existing package file
|
||||||
to be replaceed by new downloaded file.
|
to be replaceed by new downloaded file.
|
||||||
|
|
||||||
--------------------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` to learn more.
|
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` to learn more.
|
||||||
|
|
||||||
### Example ################################################################################
|
### Example ################################################################################
|
||||||
|
|
||||||
@@ -137,7 +137,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation`
|
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation`
|
||||||
to learn more.
|
to learn more.
|
||||||
|
|
||||||
## Example ####################################################################
|
## Example ####################################################################
|
||||||
@@ -210,7 +210,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation`
|
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation`
|
||||||
to learn more.
|
to learn more.
|
||||||
|
|
||||||
## Example ####################################################################
|
## Example ####################################################################
|
||||||
@@ -260,7 +260,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation`
|
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation`
|
||||||
to learn more.
|
to learn more.
|
||||||
|
|
||||||
### Example ###################################################################
|
### Example ###################################################################
|
||||||
@@ -324,7 +324,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation`
|
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation`
|
||||||
to learn more.
|
to learn more.
|
||||||
|
|
||||||
### Example ###################################################################
|
### Example ###################################################################
|
||||||
@@ -368,7 +368,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
|||||||
|
|
||||||
-----------------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation`
|
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation`
|
||||||
to learn more.
|
to learn more.
|
||||||
|
|
||||||
### Example #############################################################################
|
### Example #############################################################################
|
||||||
@@ -420,7 +420,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation`
|
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation`
|
||||||
to learn more.
|
to learn more.
|
||||||
|
|
||||||
### Example ###################################################################
|
### Example ###################################################################
|
||||||
@@ -458,7 +458,7 @@ filename packages "C:/SAS_PACKAGES"; %* set-up a directory for packages;
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation`
|
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation`
|
||||||
to read about the details of package generation process.
|
to read about the details of package generation process.
|
||||||
|
|
||||||
### Parameters:
|
### Parameters:
|
||||||
@@ -665,7 +665,7 @@ Run the following code in your SAS session:
|
|||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~sas
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~sas
|
||||||
filename packages "%sysfunc(pathname(work))"; %* setup WORK as a temporary directory for packages;
|
filename packages "%sysfunc(pathname(work))"; %* setup WORK as a temporary directory for packages;
|
||||||
|
|
||||||
filename spfinit url "https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/SPFinit.sas";
|
filename spfinit url "https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/SPFinit.sas";
|
||||||
%include spfinit; %* enable the framework;
|
%include spfinit; %* enable the framework;
|
||||||
|
|
||||||
%installPackage(SQLinDS) %* install the package from the Internet;
|
%installPackage(SQLinDS) %* install the package from the Internet;
|
||||||
|
|||||||
@@ -142,7 +142,7 @@ des = 'Macro to load SAS package, version 20201101. Run %loadPackage() for help
|
|||||||
%put # #;
|
%put # #;
|
||||||
%put #-------------------------------------------------------------------------------#;
|
%put #-------------------------------------------------------------------------------#;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` #;
|
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||||
%put # to learn more. #;
|
%put # to learn more. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put ### Example #####################################################################;
|
%put ### Example #####################################################################;
|
||||||
@@ -303,7 +303,7 @@ des = 'Macro to unload SAS package, version 20201101. Run %unloadPackage() for h
|
|||||||
%put # #;
|
%put # #;
|
||||||
%put #-------------------------------------------------------------------------------#;
|
%put #-------------------------------------------------------------------------------#;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` #;
|
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||||
%put # to learn more. #;
|
%put # to learn more. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put ### Example #####################################################################;
|
%put ### Example #####################################################################;
|
||||||
@@ -446,7 +446,7 @@ des = 'Macro to get help about SAS package, version 20201101. Run %helpPackage()
|
|||||||
%put # #;
|
%put # #;
|
||||||
%put #-------------------------------------------------------------------------------#;
|
%put #-------------------------------------------------------------------------------#;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` #;
|
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||||
%put # to learn more. #;
|
%put # to learn more. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put #### Example ####################################################################;
|
%put #### Example ####################################################################;
|
||||||
@@ -568,16 +568,16 @@ des = 'Macro to install SAS package, version 20201101. Run %%installPackage() fo
|
|||||||
%put # - `sourcePath=` Location of the package, e.g. "www.some.web.page/" #;
|
%put # - `sourcePath=` Location of the package, e.g. "www.some.web.page/" #;
|
||||||
%put # Mind the "/" at the end of the path! #;
|
%put # Mind the "/" at the end of the path! #;
|
||||||
%put # Current default location for packages is: #;
|
%put # Current default location for packages is: #;
|
||||||
%put # `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/packages/` #;
|
%put # `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/packages/` #;
|
||||||
%put # Current default location for the framework is: #;
|
%put # Current default location for the framework is: #;
|
||||||
%put # `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/SPF/` #;
|
%put # `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/SPF/` #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # - `replace=` With default value of `1` it causes existing package file #;
|
%put # - `replace=` With default value of `1` it causes existing package file #;
|
||||||
%put # to be replaceed by new downloaded file. #;
|
%put # to be replaceed by new downloaded file. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put #--------------------------------------------------------------------------------------------#;
|
%put #--------------------------------------------------------------------------------------------#;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` #;
|
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||||
%put # to learn more. #;
|
%put # to learn more. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put #### Example #################################################################################;
|
%put #### Example #################################################################################;
|
||||||
@@ -621,7 +621,7 @@ des = 'Macro to install SAS package, version 20201101. Run %%installPackage() fo
|
|||||||
|
|
||||||
%if %superq(sourcePath)= %then
|
%if %superq(sourcePath)= %then
|
||||||
%do;
|
%do;
|
||||||
%let sourcePath = https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/packages/;
|
%let sourcePath = https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/packages/;
|
||||||
%end;
|
%end;
|
||||||
|
|
||||||
%local i;
|
%local i;
|
||||||
@@ -641,7 +641,7 @@ des = 'Macro to install SAS package, version 20201101. Run %%installPackage() fo
|
|||||||
%do;
|
%do;
|
||||||
/* allows to install/download the framework file like any other package */
|
/* allows to install/download the framework file like any other package */
|
||||||
filename &in URL
|
filename &in URL
|
||||||
"https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/SPF/SPFinit.sas"
|
"https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/SPF/SPFinit.sas"
|
||||||
recfm=N lrecl=1;
|
recfm=N lrecl=1;
|
||||||
filename &out
|
filename &out
|
||||||
"%sysfunc(pathname(packages))/SPFinit.sas"
|
"%sysfunc(pathname(packages))/SPFinit.sas"
|
||||||
@@ -775,7 +775,7 @@ des = 'Macro to install SAS package, version 20201101. Run %%installPackage() fo
|
|||||||
|
|
||||||
filename packages "%sysfunc(pathname(work))"; %* setup WORK as a temporary directory for packages;
|
filename packages "%sysfunc(pathname(work))"; %* setup WORK as a temporary directory for packages;
|
||||||
|
|
||||||
filename spfinit url "https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/SPFinit.sas";
|
filename spfinit url "https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/SPFinit.sas";
|
||||||
%include spfinit; %* enable the framework;
|
%include spfinit; %* enable the framework;
|
||||||
|
|
||||||
%installPackage(SQLinDS) %* install the package from the Internet;
|
%installPackage(SQLinDS) %* install the package from the Internet;
|
||||||
@@ -888,7 +888,7 @@ des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HE
|
|||||||
%put # #;
|
%put # #;
|
||||||
%put #-----------------------------------------------------------------------------------------#;
|
%put #-----------------------------------------------------------------------------------------#;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` #;
|
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||||
%put # to learn more. #;
|
%put # to learn more. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put #### Example ##############################################################################;
|
%put #### Example ##############################################################################;
|
||||||
@@ -1062,7 +1062,7 @@ des = 'Macro to generate SAS packages, version 20201101. Run %generatePackage()
|
|||||||
%put # #;
|
%put # #;
|
||||||
%put #-------------------------------------------------------------------------------#;
|
%put #-------------------------------------------------------------------------------#;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` #;
|
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||||
%put # to read about the details of package generation process. #;
|
%put # to read about the details of package generation process. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put #### Parameters: #;
|
%put #### Parameters: #;
|
||||||
@@ -2978,7 +2978,7 @@ parmbuff
|
|||||||
%put # #;
|
%put # #;
|
||||||
%put #-------------------------------------------------------------------------------#;
|
%put #-------------------------------------------------------------------------------#;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` #;
|
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||||
%put # to learn more. #;
|
%put # to learn more. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put #### Example ####################################################################;
|
%put #### Example ####################################################################;
|
||||||
@@ -3082,7 +3082,7 @@ des = 'Macro to verify SAS package with the hash digest, version 20201101. Run %
|
|||||||
%put # #;
|
%put # #;
|
||||||
%put #-------------------------------------------------------------------------------#;
|
%put #-------------------------------------------------------------------------------#;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/master/SPF/Documentation` #;
|
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||||
%put # to learn more. #;
|
%put # to learn more. #;
|
||||||
%put # #;
|
%put # #;
|
||||||
%put #### Example ####################################################################;
|
%put #### Example ####################################################################;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
## SAS Packages:
|
## SAS Packages:
|
||||||
To get started with SAS Packages try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/master/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory).
|
To get started with SAS Packages try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory).
|
||||||
|
|
||||||
## Available packages:
|
## Available packages:
|
||||||
Currently the following packages are available:
|
Currently the following packages are available:
|
||||||
@@ -20,7 +20,7 @@ run;
|
|||||||
```
|
```
|
||||||
SHA256 digest for SQLinDS: 135DC50C0412B8CEAF6D5349B8A203C0ADB23D4F5C2680B6A35FD2E5482B6C49
|
SHA256 digest for SQLinDS: 135DC50C0412B8CEAF6D5349B8A203C0ADB23D4F5C2680B6A35FD2E5482B6C49
|
||||||
|
|
||||||
[Documentation for SQLinDS](https://github.com/yabwon/SAS_PACKAGES/blob/master/packages/sqlinds.md "Documentation for SQLinDS")
|
[Documentation for SQLinDS](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/sqlinds.md "Documentation for SQLinDS")
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ SHA256 digest for DFA: E67A0863992722A5F535F56E14EF8D19A55F74FB374447BF11B5ED740
|
|||||||
```
|
```
|
||||||
SHA256 digest for macroArray: 75056F508E96296DC50096BBB054C58334DB913AD37885958099EDCE0C330CB2
|
SHA256 digest for macroArray: 75056F508E96296DC50096BBB054C58334DB913AD37885958099EDCE0C330CB2
|
||||||
|
|
||||||
[Documentation for macroArray](https://github.com/yabwon/SAS_PACKAGES/blob/master/packages/macroarray.md "Documentation for macroArray")
|
[Documentation for macroArray](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/macroarray.md "Documentation for macroArray")
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -104,7 +104,7 @@ format x bool.;
|
|||||||
```
|
```
|
||||||
SHA256 digest for BasePlus: 9549378E5F81DA4DC421C366DF006D270261852336CE3DCD88FF8E2A759938C8
|
SHA256 digest for BasePlus: 9549378E5F81DA4DC421C366DF006D270261852336CE3DCD88FF8E2A759938C8
|
||||||
|
|
||||||
[Documentation for BasePlus](https://github.com/yabwon/SAS_PACKAGES/blob/master/packages/baseplus.md "Documentation for BasePlus")
|
[Documentation for BasePlus](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/baseplus.md "Documentation for BasePlus")
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user