12 Commits

Author SHA1 Message Date
Bart Jablonski
9e2a3ee807 The BasePlus package [ver. 1.26.0]
# The BasePlus package [ver. 1.26.0]

### New Features:
Two new macros were introduces in the release:
- `%findDSwithVarVal()`
- `%getTitle()`

Documentation updated.
2023-06-01 17:39:06 +02:00
SASPAC - SAS Packages Archive
b6d0bd34fd Merge pull request #17 from SASPAC/dev
The BasePlus package [ver. 1.26.0]
2023-06-01 17:09:08 +02:00
Bart Jablonski
770ae068a4 The BasePlus package [ver. 1.26.0]
# The BasePlus package [ver. 1.26.0]

### New Features:
Two new macros were introduces in the release:
 - `%findDSwithVarVal()`
 - `%getTitle()`

Documentation updated.
2023-06-01 17:03:50 +02:00
SASPAC - SAS Packages Archive
5012092072 Merge pull request #16 from SASPAC/dev
The BasePlus package [ver. 1.24.2]
2023-05-26 11:22:15 +02:00
Bart Jablonski
5492c49ad4 The BasePlus package [ver. 1.24.2]
The BasePlus package [ver. 1.24.2]

Updates:
- the `%RainCloudPlot()` has 2 new parameters: `catLabelAttrs` and `xLabelAttrs`,
- documentation was updated (new examples with plots), and
- some spellings were fixed.

The SHA256 hash digest for package BasePlus:
`F*2A4F3953EC56DB914024457F74286D565C23DCF220FF151040BDB704FD8DDB06`
2023-05-26 11:18:18 +02:00
SASPAC - SAS Packages Archive
598fe97c74 Merge pull request #15 from SASPAC/dev
The BasePlus package [ver. 1.24.1]
2023-05-20 17:32:16 +02:00
Bart Jablonski
13a9585ae3 The BasePlus package [ver. 1.24.1]
The BasePlus package [ver. 1.24.1]

- The `BasePlus` package, version `1.24.1` was regenerated with latest version of the framework.
- The `%RainCloudPlot()` macro from the `BasePlus` packages was updated with new parameters:
    * `sganno`             - *Optional*, default value is empty.
                             keeps name of a data set for the `sganno=` option
                             of the SGPLOT procedure.

    * `sgPlotOptions`      - *Optional*, default value is `noautolegend noborder`.
                             List of additional options values for SGPLOT procedure.

    * `odsGraphicsOptions` - *Optional*, default value is empty.
                             List of additional options values for `ODS Graphics` statement.
                             By default only the: `width=`, `height=`, and `antialiasmax=`
                             are modified.
2023-05-20 17:27:04 +02:00
Bart Jablonski
827362b8e7 The BasePlus package [ver. 1.24.1]
The BasePlus package [ver. 1.24.1]

- The `BasePlus` package, version `1.24.1` was regenerated with latest version of the framework.
- The `%RainCloudPlot()` macro from the `BasePlus` packages was updated with new parameters:
    * `sganno`             - *Optional*, default value is empty.
                             keeps name of a data set for the `sganno=` option
                             of the SGPLOT procedure.

    * `sgPlotOptions`      - *Optional*, default value is `noautolegend noborder`.
                             List of additional options values for SGPLOT procedure.

    * `odsGraphicsOptions` - *Optional*, default value is empty.
                             List of additional options values for `ODS Graphics` statement.
                             By default only the: `width=`, `height=`, and `antialiasmax=`
                             are modified.
2023-05-20 17:25:28 +02:00
Bart Jablonski
0c2be8d0d7 Merge pull request #14 from SASPAC/main
pull request
2023-05-03 23:16:23 +02:00
Bart Jablonski
4337aeed24 The BasePlus package [ver. 1.24.0]
The BasePlus package [ver. 1.24.0]

Six new utility macros for the BasePlus:
- `%letters()` - allows to print a list of Roman letters,
- `%filePath()` - from fileref returns path to a file,
- `%libPath()` - from libref  returns path to a library,
- `%workPath()` - returns path to the `WORK` library,
- `%translate()` - a wrapper to translate() function,
- `%tranwrd()` - a wrapper to tranwrd() function.

Documentation updated.
2023-05-03 23:04:57 +02:00
Bart Jablonski
29e37b4b79 Merge pull request #13 from SASPAC/dev
The BasePlus package [ver. 1.23.0]
2023-04-19 16:49:02 +02:00
Bart Jablonski
5d914da02d The BasePlus package [ver. 1.23.0]
The BasePlus package [ver. 1.23.0]

Three new utility macros for the BasePlus:
- `%intsList()` - prints a space separated list of integers,
- `%splitDSIntoBlocks()` - splits dataset into block of given size (and one[the last] possibly smaller)
- `%splitDSIntoParts()` - splits dataset into given number of parts (of approximately same size)

Macros `splitDSIntoBlocks` and `splitDSIntoParts` supports *BASE* and *SPDE* engines.

Documentation updated.
2023-04-19 16:39:09 +02:00
14 changed files with 15942 additions and 61 deletions

View File

@@ -27,10 +27,28 @@ format x bool.;
%dirsAndFiles(C:\SAS_WORK\,ODS=work.result)
%put %repeatTxt(#,15,s=$) HELLO SAS! %repeatTxt(#,15,s=$);
%put %intsList(42);
%put %letters(1:26:1);
%splitDSIntoBlocks(5, sashelp.class, classBlock)
%splitDSIntoParts(7, sashelp.cars, carsPart)
filename f temp;
%put %filePath(f);
%put %libPath(WORK);
libname NEW "%workPath()/new";
%put %translate(%str("A", "B", "C"),%str(%",),%str(%' ));
%put %tranwrd(Miss Joan Smith,Miss,Ms.);
```
and more.
SHA256 digest for the latest version of `BasePlus`: F*F39F38CE80A5D8EED3BC9F2413CD6DEF38E8657E5DCF427CBA8938EB8C4350B6
SHA256 digest for the latest version of `BasePlus`: F*B3CACDA32A5E70940E667DCA859483BD76DB082D19BAF326F28A580226DDD962
[**Documentation for BasePlus**](./baseplus.md "Documentation for BasePlus")

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

BIN
hist/1.23.0/baseplus.zip Normal file

Binary file not shown.

BIN
hist/1.24.0/baseplus.zip Normal file

Binary file not shown.

4904
hist/1.24.1/baseplus.md Normal file

File diff suppressed because it is too large Load Diff

BIN
hist/1.24.1/baseplus.zip Normal file

Binary file not shown.

4922
hist/1.24.2/baseplus.md Normal file

File diff suppressed because it is too large Load Diff

BIN
hist/1.24.2/baseplus.zip Normal file

Binary file not shown.

5143
hist/1.26.0/baseplus.md Normal file

File diff suppressed because it is too large Load Diff

BIN
hist/1.26.0/baseplus.zip Normal file

Binary file not shown.