Files
baseplus/hist
Bart Jablonski 95a0f71940 The BasePlus package [ver. 1.42.0]
## The BasePlus package [ver. 1.42.0]

### Changes:

New macro
[`%GenerateOneLiners()`](https://github.com/SASPAC/baseplus/blob/1.42.0/baseplus.md#generateoneliners-macro)
allowing to generate "one liner" functions of the form:

~~~~sas
%macro FUNCTION()/parmbuff;
%sysfunc(FUNCTION&syspbuff)
%mend FUNCTION;
~~~~

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

---

SHA256 digest for BasePlus: `F*6012D1475AE22A4445C032D8EAE092BE515D8CD2AE390CC087F5987ACB8BCB13`

---

### Example

~~~~sas
%GenerateOneLiners(
  listOfFunctions=SUM MEAN MEDIAN VAR
, prefix=_)

%put
  %_SUM(1,2,3,4,5,6)
  %_MEAN(1,2,3,4,5,6)
  %_MEDIAN(1,2,3,4,5,6)
  %_VAR(1,2,3,4,5,6)
;
~~~~
2024-07-10 23:07:23 +02:00
..
2022-09-30 18:19:45 +02:00
2022-11-12 17:38:46 +01:00
2022-11-21 14:41:03 +01:00
2022-11-27 00:01:11 +01:00
2022-12-15 17:56:58 +01:00
2023-04-01 22:27:56 +02:00
2023-04-11 18:38:20 +02:00
2023-04-17 14:57:48 +02:00
2023-04-19 16:39:09 +02:00
2023-05-03 23:04:57 +02:00
2023-05-20 17:25:28 +02:00
2023-05-26 11:18:18 +02:00
2023-06-01 17:03:50 +02:00
2023-06-02 11:42:29 +02:00
2023-08-24 11:32:14 +02:00
2023-09-04 16:35:24 +02:00
2023-09-19 17:44:00 +02:00
2023-10-12 17:20:51 +02:00
2023-10-26 13:49:12 +02:00
2023-11-07 12:53:30 +01:00
2023-11-11 17:31:17 +01:00
2023-11-14 14:44:47 +01:00
2023-11-14 15:40:32 +01:00
2024-01-12 10:58:13 +01:00
2024-03-09 13:53:40 +01:00
2024-03-12 14:42:32 +01:00
2024-05-29 16:36:44 +02:00
2024-06-06 22:16:31 +02:00
2024-06-09 18:51:00 +02:00
2024-07-10 23:07:23 +02:00