2 Commits

Author SHA1 Message Date
SASPAC - SAS Packages Archive
3cecb0a5c0 Merge pull request #38 from SASPAC/dev
The BasePlus package [ver. 1.41.0]
2024-06-09 18:54:18 +02:00
Bart Jablonski
d52e0cf147 The BasePlus package [ver. 1.41.0]
## The BasePlus package [ver. 1.41.0]

### Changes:

Update to the
[`%rainCloudPlot()`](https://github.com/SASPAC/baseplus/blob/1.41.0/baseplus.md#raincloudplot-macro-17)
macro, new parameter:
 - `meanShiftLine=`
 - `meanShiftStep=`
 - `meanShiftColors=`
 - `xaxisValues=`
 - `xaxisValuesDisplay=`
 - `xaxisValuesFormat=`
 - `xaxisValuesRotate=`
 - `xaxisOther=`
 - `reuseN=`

See [documentation](https://github.com/SASPAC/baseplus/blob/main/baseplus.md) for details.

---

SHA256 digest for BasePlus: `F*6760DDF382E7CA9A1291F028FA7F2BACB68A3D31CEA3A85104E13EA08645AEF1`

---
2024-06-09 18:51:00 +02:00
12 changed files with 7183 additions and 10 deletions

View File

@@ -54,7 +54,7 @@ libname NEW "%workPath()/new";
``` ```
and more. and more.
SHA256 digest for the latest version of `BasePlus`: F*BD0333B92D7CB639A136CD4994DE0C63F8396E449E45BC714D71D2E15318F42D SHA256 digest for the latest version of `BasePlus`: F*6760DDF382E7CA9A1291F028FA7F2BACB68A3D31CEA3A85104E13EA08645AEF1
[**Documentation for BasePlus**](./baseplus.md "Documentation for BasePlus") [**Documentation for BasePlus**](./baseplus.md "Documentation for BasePlus")

View File

@@ -9,22 +9,22 @@
### Version information: ### Version information:
- Package: BasePlus - Package: BasePlus
- Version: 1.40.0 - Version: 1.41.0
- Generated: 2024-06-06T21:47:12 - Generated: 2024-06-09T18:22:04
- Author(s): Bartosz Jablonski (yabwon@gmail.com), Quentin McMullen (qmcmullen@gmail.com) - Author(s): Bartosz Jablonski (yabwon@gmail.com), Quentin McMullen (qmcmullen@gmail.com)
- Maintainer(s): Bartosz Jablonski (yabwon@gmail.com) - Maintainer(s): Bartosz Jablonski (yabwon@gmail.com)
- License: MIT - License: MIT
- File SHA256: `F*BD0333B92D7CB639A136CD4994DE0C63F8396E449E45BC714D71D2E15318F42D` for this version - File SHA256: `F*6760DDF382E7CA9A1291F028FA7F2BACB68A3D31CEA3A85104E13EA08645AEF1` for this version
- Content SHA256: `C*A35E716739EC4FF9767C363E840458FB7D5212605982276632F59FD26AB43594` for this version - Content SHA256: `C*850DEDF85E36C971713B7E3B29AC703C570A89479D47799F1482216E4F1F52FC` for this version
--- ---
# The `BasePlus` package, version: `1.40.0`; # The `BasePlus` package, version: `1.41.0`;
--- ---
# The BasePlus package [ver. 1.40.0] <a name="baseplus-package"></a> ############################################### # The BasePlus package [ver. 1.41.0] <a name="baseplus-package"></a> ###############################################
The **BasePlus** package implements useful The **BasePlus** package implements useful
functions and functionalities I miss in the BASE SAS. functions and functionalities I miss in the BASE SAS.
@@ -466,7 +466,9 @@ The `BasePlus` package consists of the following content:
74. [`%translate()` macro ](#translate-macro-74 ) 74. [`%translate()` macro ](#translate-macro-74 )
75. [`%tranwrd()` macro ](#tranwrd-macro-75 ) 75. [`%tranwrd()` macro ](#tranwrd-macro-75 )
76. [`%workpath()` macro ](#workpath-macro-76 ) 76. [`%workpath()` macro ](#workpath-macro-76 )
77. [License note](#license)
98. [License note](#license)
--- ---
@@ -2018,6 +2020,9 @@ The basic syntax is the following, the `<...>` means optional parameters:
<,boxPlotSymbolSize=> <,boxPlotSymbolSize=>
<,boxPlotLineSize=> <,boxPlotLineSize=>
<,boxPlotFill=> <,boxPlotFill=>
<,meanShiftLine=>
<,meanShiftStep=>
<,meanShiftColors=>
<,colorsList=> <,colorsList=>
<,monochrome=> <,monochrome=>
<,antialiasMax=> <,antialiasMax=>
@@ -2039,9 +2044,15 @@ The basic syntax is the following, the `<...>` means optional parameters:
<,catAxisValueAttrs=> <,catAxisValueAttrs=>
<,xaxisValueAttrs=> <,xaxisValueAttrs=>
<,xaxisTickstyle=> <,xaxisTickstyle=>
<,xaxisValues=>
<,xaxisValuesDisplay=>
<,xaxisValuesFormat=>
<,xaxisValuesRotate=>
<,xaxisOther=>
<,sganno=> <,sganno=>
<,odsGraphicsOptions=> <,odsGraphicsOptions=>
<,sgPlotOptions=> <,sgPlotOptions=>
<,vertical=>
<,VSCALE=> <,VSCALE=>
<,KERNEL_K=> <,KERNEL_K=>
@@ -2052,6 +2063,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
<,cleanTempData=> <,cleanTempData=>
<,codePreview=> <,codePreview=>
<,reuseN=>
) )
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~
@@ -2103,6 +2115,17 @@ The basic syntax is the following, the `<...>` means optional parameters:
Transparency of the box plot. Transparency of the box plot.
Ranges from 0.0 (opaque) to 1.0 (full translucent). Ranges from 0.0 (opaque) to 1.0 (full translucent).
* `meanShiftLine` - *Optional*, default value `0`.
Indicates if a line connecting mean symbol
on the Box Plot should be added.
* `meanShiftStep` - *Optional*, default value `0.1`.
Sets how smooth gradient should be
on the "mean-shift" line.
* `meanShiftColors` - *Optional*, default value is empty.
List of colours for plotting the "mean-shift" line.
Empty indicates that the `colorsList` value will be used.
* `colorsList` - *Optional*, default value is empty. * `colorsList` - *Optional*, default value is empty.
List of colours for plotting. List of colours for plotting.
@@ -2134,7 +2157,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
For details see notes below. For details see notes below.
* `xBothAxis` - *Optional*, default value is `1`. * `xBothAxis` - *Optional*, default value is `1`.
Indicates if both (top and bootom) axis (horizontal) should be printed. Indicates if both (top and bottom) axis (horizontal) should be printed.
If not `1` then only bottom axis is displayed. If not `1` then only bottom axis is displayed.
* `catLabelPos` - *Optional*, default value `DATACENTER`. * `catLabelPos` - *Optional*, default value `DATACENTER`.
@@ -2183,11 +2206,34 @@ The basic syntax is the following, the `<...>` means optional parameters:
Allowed values are `OUTSIDE`, `INSIDE`, `ACROSS`, and `INBETWEEN`. Allowed values are `OUTSIDE`, `INSIDE`, `ACROSS`, and `INBETWEEN`.
*For SAS previous to* **9.4M5** *set to missing!* *For SAS previous to* **9.4M5** *set to missing!*
* `xaxisValues` - *Optional*, default value is empty.
It is a wrapper to provide value for
the `XAXIS` statement, for `Values` option.
* `xaxisValuesDisplay` - *Optional*, default value is empty.
It is a wrapper to provide value for
the `XAXIS` statement, for `ValuesDisplay` option.
* `xaxisValuesFormat` - *Optional*, default value is empty.
It is a wrapper to provide value for
the `XAXIS` statement, for `ValuesFormat` option.
Instead using `w.d` format, use its alias `Fw.d`.
* `xaxisValuesRotate` - *Optional*, default value is empty.
It is a wrapper to provide value for
the `XAXIS` statement, for `ValuesRotate` option.
* `xaxisOther` - *Optional*, default value is empty.
It is a wrapper to provide value for
the `XAXIS` statement options not mentioned above.
You can use it to provide, e.g., `GRID`, 'MINOR',
`MINORGRID`, `GRIDATTRS=`, or `MINORGRIDATTRS=`.
* `sganno` - *Optional*, default value is empty. * `sganno` - *Optional*, default value is empty.
keeps name of a data set for the `sganno=` option keeps name of a data set for the `sganno=` option
of the SGPLOT procedure. of the SGPLOT procedure.
* `sgPlotOptions` - *Optional*, default value is `noautolegend noborder`. * `sgPlotOptions` - *Optional*, default value is `noautolegend noborder subpixel`.
List of additional options values for SGPLOT procedure. List of additional options values for SGPLOT procedure.
* `odsGraphicsOptions` - *Optional*, default value is empty. * `odsGraphicsOptions` - *Optional*, default value is empty.
@@ -2243,6 +2289,11 @@ The basic syntax is the following, the `<...>` means optional parameters:
* `codePreview` - *Optional*, default value `0`. * `codePreview` - *Optional*, default value `0`.
Indicates if source code should be MPRINTed to log. Indicates if source code should be MPRINTed to log.
* `reuseN` - *Optional*, default value `6`.
Indicates how many times colours list should be repeated
so that colours could be reused in case the number of groups
is greater than the colours list length.
--- ---
### NOTES: ################################################################### ### NOTES: ###################################################################

Binary file not shown.

7122
hist/1.41.0/baseplus.md Normal file

File diff suppressed because it is too large Load Diff

BIN
hist/1.41.0/baseplus.zip Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB