mirror of
https://github.com/SASPAC/baseplus.git
synced 2025-12-24 11:51:19 +00:00
Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4337aeed24 | ||
|
|
29e37b4b79 | ||
|
|
5d914da02d | ||
|
|
a2d9c6ce9f | ||
|
|
4fb506753c | ||
|
|
ff0a008142 | ||
|
|
505f501892 | ||
|
|
9e0afd454c | ||
|
|
236d219a9d | ||
|
|
b40baabfe9 | ||
|
|
e930c2eac8 | ||
|
|
351fa4f5b1 | ||
|
|
df09946ffc | ||
|
|
3285ff98cb | ||
|
|
a932bd3c74 | ||
|
|
1043d06a99 | ||
|
|
76e456c15c | ||
|
|
9be9e8fb4c | ||
|
|
8585eac617 | ||
|
|
0b4581f9c4 | ||
|
|
55a27b756d | ||
|
|
0fb4b064e5 | ||
|
|
a56c03ee2e | ||
|
|
fd79234c07 | ||
|
|
2a3a42fd82 |
55
README.md
Normal file
55
README.md
Normal file
@@ -0,0 +1,55 @@
|
||||
## `basePlus` - The BASE SAS plus a bunch of functionalities I am missing in BASE SAS :-)
|
||||
|
||||
---
|
||||
|
||||
The **BasePlus** package adds a bunch of functionalities I am missing in BASE SAS, such as:
|
||||
```sas
|
||||
call arrMissToRight(myArray);
|
||||
|
||||
call arrFillMiss(17, myArray);
|
||||
|
||||
call arrFill(42, myArray);
|
||||
|
||||
rc = delDataset("DataSetToDrop");
|
||||
|
||||
string = catXFn("date9.", "#", myArray);
|
||||
|
||||
format x bool.;
|
||||
|
||||
%put %getVars(sashelp.class, pattern = ght$, sep = +, varRange = _numeric_);
|
||||
|
||||
%rainCloudPlot(sashelp.cars,DriveTrain,Invoice)
|
||||
|
||||
%zipLibrary(sashelp,libOut=work)
|
||||
|
||||
%bpPIPE(ls -la ~/)
|
||||
|
||||
%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*B297440903337E1AE6F12A6001B80B8AB743079847D16D63DF1C649AE51AA411
|
||||
|
||||
[**Documentation for BasePlus**](./baseplus.md "Documentation for BasePlus")
|
||||
|
||||
To work with a package use the [**SAS Packages Framework**](https://github.com/yabwon/SAS_PACKAGES/blob/main/README.md "SPFinit").
|
||||
994
baseplus.md
994
baseplus.md
File diff suppressed because it is too large
Load Diff
BIN
baseplus.zip
BIN
baseplus.zip
Binary file not shown.
BIN
hist/1.17.1/baseplus.zip
Normal file
BIN
hist/1.17.1/baseplus.zip
Normal file
Binary file not shown.
BIN
hist/1.17.2/baseplus.zip
Normal file
BIN
hist/1.17.2/baseplus.zip
Normal file
Binary file not shown.
BIN
hist/1.17.3/baseplus.zip
Normal file
BIN
hist/1.17.3/baseplus.zip
Normal file
Binary file not shown.
BIN
hist/1.18.4/baseplus.zip
Normal file
BIN
hist/1.18.4/baseplus.zip
Normal file
Binary file not shown.
BIN
hist/1.19.0/baseplus.zip
Normal file
BIN
hist/1.19.0/baseplus.zip
Normal file
Binary file not shown.
BIN
hist/1.19.1/baseplus.zip
Normal file
BIN
hist/1.19.1/baseplus.zip
Normal file
Binary file not shown.
BIN
hist/1.20.0/baseplus.zip
Normal file
BIN
hist/1.20.0/baseplus.zip
Normal file
Binary file not shown.
BIN
hist/1.23.0/baseplus.zip
Normal file
BIN
hist/1.23.0/baseplus.zip
Normal file
Binary file not shown.
BIN
hist/1.24.0/baseplus.zip
Normal file
BIN
hist/1.24.0/baseplus.zip
Normal file
Binary file not shown.
Reference in New Issue
Block a user