mirror of
https://github.com/SASPAC/baseplus.git
synced 2026-01-05 00:50:05 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
598fe97c74 | ||
|
|
13a9585ae3 | ||
|
|
827362b8e7 | ||
|
|
0c2be8d0d7 |
@@ -48,7 +48,7 @@ libname NEW "%workPath()/new";
|
|||||||
```
|
```
|
||||||
and more.
|
and more.
|
||||||
|
|
||||||
SHA256 digest for the latest version of `BasePlus`: F*B297440903337E1AE6F12A6001B80B8AB743079847D16D63DF1C649AE51AA411
|
SHA256 digest for the latest version of `BasePlus`: F*0CCAA009D64CC20ED315FA123C233E0383967E635EB8708E7A48EEE3767C6BC5
|
||||||
|
|
||||||
[**Documentation for BasePlus**](./baseplus.md "Documentation for BasePlus")
|
[**Documentation for BasePlus**](./baseplus.md "Documentation for BasePlus")
|
||||||
|
|
||||||
|
|||||||
73
baseplus.md
73
baseplus.md
@@ -67,7 +67,7 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# The BasePlus package [ver. 1.24.0] <a name="baseplus-package"></a> ###############################################
|
# The BasePlus package [ver. 1.24.1] <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.
|
||||||
@@ -336,10 +336,10 @@ Package contains additional content, run: %loadPackageAddCnt(BasePlus) to load
|
|||||||
or look for the baseplus_AdditionalContent directory in the Packages fileref
|
or look for the baseplus_AdditionalContent directory in the Packages fileref
|
||||||
localization (only if additional content was deployed during the installation process).
|
localization (only if additional content was deployed during the installation process).
|
||||||
|
|
||||||
* SAS package generated by generatePackage, version 20230411 *
|
* SAS package generated by generatePackage, version 20230520 *
|
||||||
|
|
||||||
The SHA256 hash digest for package BasePlus:
|
The SHA256 hash digest for package BasePlus:
|
||||||
`F*B297440903337E1AE6F12A6001B80B8AB743079847D16D63DF1C649AE51AA411`
|
`F*0CCAA009D64CC20ED315FA123C233E0383967E635EB8708E7A48EEE3767C6BC5`
|
||||||
|
|
||||||
---
|
---
|
||||||
# Content description ############################################################################################
|
# Content description ############################################################################################
|
||||||
@@ -3118,7 +3118,9 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
|||||||
<,y2axisValueAttrs=>
|
<,y2axisValueAttrs=>
|
||||||
<,xaxisValueAttrs=>
|
<,xaxisValueAttrs=>
|
||||||
<,xaxisTickstyle=>
|
<,xaxisTickstyle=>
|
||||||
|
<,sganno=>
|
||||||
|
<,odsGraphicsOptions=>
|
||||||
|
<,sgPlotOptions=>
|
||||||
|
|
||||||
<,VSCALE=>
|
<,VSCALE=>
|
||||||
<,KERNEL_K=>
|
<,KERNEL_K=>
|
||||||
@@ -3224,6 +3226,19 @@ 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!*
|
||||||
|
|
||||||
|
* `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.
|
||||||
|
|
||||||
|
|
||||||
***Stat related options***:
|
***Stat related options***:
|
||||||
|
|
||||||
* `VSCALE` - *Optional*, default value `Proportion`.
|
* `VSCALE` - *Optional*, default value `Proportion`.
|
||||||
@@ -3354,6 +3369,56 @@ The output:
|
|||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
**EXAMPLE 3.** Rain Cloud plot with formated groups:
|
||||||
|
and annotations.
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~sas
|
||||||
|
|
||||||
|
data annotation;
|
||||||
|
function="text";
|
||||||
|
label="This graph is full(*ESC*){sup '2'} of annotations!";
|
||||||
|
drawspace="graphpercent";
|
||||||
|
rotate=30;
|
||||||
|
anchor="center";
|
||||||
|
textsize=32;
|
||||||
|
x1=50;
|
||||||
|
y1=50;
|
||||||
|
textcolor="red";
|
||||||
|
justify="center";
|
||||||
|
textweight="bold";
|
||||||
|
width=100;
|
||||||
|
widthunit="percent";
|
||||||
|
run;
|
||||||
|
|
||||||
|
proc format;
|
||||||
|
value system
|
||||||
|
1="Windows"
|
||||||
|
2="MacOS"
|
||||||
|
3="Linux"
|
||||||
|
;
|
||||||
|
run;
|
||||||
|
|
||||||
|
data test;
|
||||||
|
do system = 1 to 3;
|
||||||
|
do i = 1 to 30;
|
||||||
|
x = rannor(123)/system;
|
||||||
|
output;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
format system system.;
|
||||||
|
run;
|
||||||
|
|
||||||
|
|
||||||
|
%RainCloudPlot(test, system, x
|
||||||
|
, formated=1
|
||||||
|
, sganno=annotation
|
||||||
|
, sgPlotOptions=noborder
|
||||||
|
, WidthPX=2000
|
||||||
|
, HeightPX=420
|
||||||
|
)
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## >>> `%zipLibrary()` macro: <<< <a name="ziplibrary-macro"></a> #######################
|
## >>> `%zipLibrary()` macro: <<< <a name="ziplibrary-macro"></a> #######################
|
||||||
|
|||||||
BIN
baseplus.zip
BIN
baseplus.zip
Binary file not shown.
4904
hist/1.24.1/baseplus.md
Normal file
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
BIN
hist/1.24.1/baseplus.zip
Normal file
Binary file not shown.
Reference in New Issue
Block a user