forked from bvancil/quarto-sas-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsas-example.qmd
More file actions
35 lines (31 loc) · 700 Bytes
/
sas-example.qmd
File metadata and controls
35 lines (31 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
title: "sas_kernel test"
format:
html:
code-fold: true
jupyter: sas
execute:
enabled: true
---
# Test of Quarto with a SAS kernel.
This is a common dataset found in SAS documentation.
```{sas}
data BPressure;
length PatientID $2;
input PatientID $ Systolic Diastolic @@;
datalines;
CK 120 50 SS 96 60 FR 100 70
CP 120 75 BL 140 90 ES 120 70
CP 165 110 JI 110 40 MC 119 66
FC 125 76 RW 133 60 KD 108 54
DS 110 50 JW 130 80 BH 120 65
JW 134 80 SB 118 76 NS 122 78
GS 122 70 AB 122 78 EC 112 62
HH 122 82
;
title 'Systolic and Diastolic Blood Pressure';
ods select BasicMeasures Quantiles;
proc univariate data=BPressure;
var Systolic Diastolic;
run;
```