标签:style HERE abc src 功能 保留 table tab cti
1. 数值型变量和字符型变量相互转换
num=input(char, best.);
char=put(num,best.);
2.过滤观测
打开需要过滤的数据集,在系统菜单选项依次点击 Data→Where,进入以下界面
note:第3步可使用lookup功能,具体操作如下
3. sas函数
3.1 coalescec function 和 coalesce function
功能相同: 依次检查输入的参数,返回第一个不为空的参数
对象不同: coalescec function 用于数值型变量,而 coalesce function用于字符型变量
举例
a1="abc" a2="" → a=coalescec(a1, a2); → a="abc"
a1=. a2=5 → a=coalesce(a1, a2); → a=5
3.2 compress function
功能:删除或保留字符串中特定字符
compress(source,<,characters><,modifier(s)>)
source: 指定字符串来源
characters:需要删除或保留的特定字符
modifier: 指定修饰符,如下表
a or A | a-z 和 A-Z |
c or C | 数字 |
d or D | |
f or F | |
g or G | |
h or H | |
i or I | |
k or K | |
l or L | |
n or N | |
o or O | |
p or P | |
s or S | |
t or T | |
u or U | |
w or W | |
x or X |
标签:style HERE abc src 功能 保留 table tab cti
原文地址:https://www.cnblogs.com/xyqhy/p/11679505.html