标签:cat 大小写 菜鸟 pca head 改变 指定 doc 查找
proc transpose <out=数据集> <name=变量名>
by
id 变量1 变量2
var 变量1 变量2
data vas;
input name$ id group vas1-vas3;
cards;
LIXM 1 1 5 5 6
ZHMI 2 2 8 5 5
FEND 3 2 7 4 5
LIMZ 4 1 6 6 3
WAXF 5 2 6 7 5
DOCX 6 1 6 5 5
;
proc transpose data =vas out=vas1 name =name;
id name;
proc print;
run;
proc compare <base=数据集 compare=数据集>
by变量1 变量2 ……;
proc format;
invalue <$> 格式名 变量或范围1=输入格式1 变量或范围2=输入格式2 ……;
value <$> 格式名 变量或范围1=输出格式1 变量或范围2=输出格式……;
proc format;
invalue age low-<40=30 40-<50=40 50-<60=50 60-high=60;
value gfmt 1="male" 2="female";
data age;
input id gender age age.;
format gender gfmt.;
函数 | 用途 |
---|---|
mod(x,y) | 返回x除以y的余数 |
abs(x) | 返回x的绝对值 |
exp(x) | 返回x的指数值 |
log(x) | 返回x的自然对数 |
log10() | 返回x以10为底的对数值 |
sqrt(x) | 返回x的平方根 |
函数 | 用途 |
---|---|
cel(x) | 返回>=x的最小整数 |
floor(x) | 返回<=x的最大整数 |
int(x) | 返回x的整数部分 |
函数 | 用途 | 函数 | 用途 |
---|---|---|---|
n | 求例数(不含缺失值) | sum | 求和 |
nmiss | 求缺失例数 | stderr | 求标准误 |
mean | 求均数 | min | 求最小值 |
median | 求中位数 | max | 求最大值 |
geomean | 求几何均数 | smallest | 求第几小的值 |
std | 求标准差 | largest | 求第几大的值 |
range | 求全距 | pctl | 求百分位数 |
iqr | 求四分位数间距 | ||
cat (变量或字符串1,…) | 合并几个变量或字符串,包括空格 |
---|---|
cats (变量1,…) | 合并几个变量或字符串,去除空格 |
catx(分隔符,变量或字符串1,…) | 合并几个变量或字符串,可插入自定义分隔符 |
find(变量或字符串,查找内容<,“i"> <,起始位置>)
findc(变量或字符串,查找内容<,“i"> <,起始位置>)
标签:cat 大小写 菜鸟 pca head 改变 指定 doc 查找
原文地址:https://www.cnblogs.com/yangzilaing/p/13061919.html