Statistics 板


LINE

[软体程式类别]: SAS [程式问题]: SAS跑macro语法的log,出现 「NOTE: 对遗漏值执行作业,因此导致产生了遗漏值。 每个位置的指定方式: 在 (行):(栏) 的 (次数)。 89 (位於 1:234) 222 (位於 1:221) 222 (位於 2:191) 222 (位於 2:216) 219 (位於 2:222) 202 (位於 1:221) 202 (位於 2:191) 20 (位於 2:197) 202 (位於 2:216) 102 (位於 2:222)」 [软体熟悉度]: 熟悉 [问题叙述]: 我的问题是:log说明的位置(1:234)我不知道是指语法的什麽地方。 我有找到一个英文的资料 (https://www.lexjansen.com/wuss/2006/data_presentation_and_business_ intelligence/DPR-Sherman.pdf) 但看完还是不懂(根据英文资料的范例,我不知道上面写的line=block怎麽找), 想要试着比对我的语法也比对不太出来。 所以想问问版上的朋友是否有经验可以分享,感谢。 以下列出我的语法 [程式范例]: 696 options nosymbolgen mprint; 697 %macro QQ(Q1,Q2); 698 data &Q1. ; 699 set &Q2. ; 700 701 %macro ch1(XX0058,XX0059,fv01,a,b,c,); 702 if &XX0058 in('N','8888','R','9999') then &fv01=.; 703 else if &XX0058='1' and &XX0059 in('N','8888','R','9999') then &fv01=.; 704 else if &XX0058='1' and &XX0059='1' then &fv01=XX0&a*7; 705 else if &XX0058='1' and &XX0059='2' then &fv01=XX0&b*1; 706 else if &XX0058='1' and &XX0059='3' then &fv01=XX0&c*(1/4); 707 else if &XX0058='2' then &fv01=0; 708 709 if XX0&a in(8888,9999) then &fv01=.; 710 if XX0&b in(8888,9999) then &fv01=.; 711 if XX0&c in(8888,9999) then &fv01=.; 712 %mend ch1; /**/ 713 %ch1(XX0154,XX0155,f020,156,156,158); 714 715 %macro ch7(XX0140,fv01,a,b,c); 716 if &XX0140 in('N','8888','R','9999') then &fv01=.; 717 else if &XX0140='1' then &fv01=XX0&a*7; 718 else if &XX0140='2' then &fv01=XX0&b*1; 719 else if &XX0140='3' then &fv01=XX0&c*(1/4); 720 else &fv01=0; 721 722 if XX0&a in(8888,9999) then &fv01=.; 723 if XX0&b in(8888,9999) then &fv01=.; 724 if XX0&c in(8888,9999) then &fv01=.; 725 %mend ch7; 726 %ch7(XX0099,f009,101,102,103); 727 728 %macro x(a,b,y); 729 if &a in('N','8888','R','9999') then &y=.; 730 if &a='1' and &b in('N','8888','R','9999') then &y=.; 731 if &a='1' and &b='1' then &y=1.5; 732 if &a='1' and &b='2' then &y=1; 733 if &a='1' and &b='3' then &y=0.5; 734 735 count=sum(of count1-count2); 736 737 if XX1374 in('N','8888','R','9999') then drink=.; 738 else if XX1374='1' then drink=XX1375*7; 739 else if XX1374='2' then drink=XX1376*1; 740 else if XX1374='3' then drink=XX1377*(1/4); 741 else drink=0; 742 743 F024=drink/count*count1; 744 F025=drink/count*count2; 745 746 %mend; 747 %x(XX1351,XX1352,count1); 748 %x(XX1353,XX1354,count2); 749 750 run; 751 %MEND QQ; 752 %QQ(YY,b.YY0); MPRINT(QQ): data YY ; MPRINT(QQ): set b.YY0 ; MPRINT(CH1): if XX0154 in('N','8888','R','9999') then f020=.; MPRINT(CH1): else if XX0154='1' and XX0155 in('N','8888','R','9999') then f020=.; MPRINT(CH1): else if XX0154='1' and XX0155='1' then f020=XX0156*7; MPRINT(CH1): else if XX0154='1' and XX0155='2' then f020=XX0156*1; MPRINT(CH1): else if XX0154='1' and XX0155='3' then f020=XX0158*(1/4); MPRINT(CH1): else if XX0154='2' then f020=0; MPRINT(CH1): if XX0156 in(8888,9999) then f020=.; MPRINT(CH1): if XX0156 in(8888,9999) then f020=.; MPRINT(CH1): if XX0158 in(8888,9999) then f020=.; MPRINT(QQ): ; MPRINT(CH7): if XX0099 in('N','8888','R','9999') then f009=.; MPRINT(CH7): else if XX0099='1' then f009=XX0101*7; MPRINT(CH7): else if XX0099='2' then f009=XX0102*1; MPRINT(CH7): else if XX0099='3' then f009=XX0103*(1/4); MPRINT(CH7): else f009=0; MPRINT(CH7): if XX0101 in(8888,9999) then f009=.; MPRINT(CH7): if XX0102 in(8888,9999) then f009=.; MPRINT(CH7): if XX0103 in(8888,9999) then f009=.; MPRINT(QQ): ; MPRINT(X): if XX1351 in('N','8888','R','9999') then count1=.; MPRINT(X): if XX1351='1' and XX1352 in('N','8888','R','9999') then count1=.; MPRINT(X): if XX1351='1' and XX1352='1' then count1=1.5; MPRINT(X): if XX1351='1' and XX1352='2' then count1=1; MPRINT(X): if XX1351='1' and XX1352='3' then count1=0.5; MPRINT(X): count=sum(of count1-count2); MPRINT(X): if XX1374 in('N','8888','R','9999') then drink=.; MPRINT(X): else if XX1374='1' then drink=XX1375*7; MPRINT(X): else if XX1374='2' then drink=XX1376*1; MPRINT(X): else if XX1374='3' then drink=XX1377*(1/4); MPRINT(X): else drink=0; MPRINT(X): F024=drink/count*count1; MPRINT(X): F025=drink/count*count2; MPRINT(QQ): ; MPRINT(X): if XX1353 in('N','8888','R','9999') then count2=.; MPRINT(X): if XX1353='1' and XX1354 in('N','8888','R','9999') then count2=.; MPRINT(X): if XX1353='1' and XX1354='1' then count2=1.5; MPRINT(X): if XX1353='1' and XX1354='2' then count2=1; MPRINT(X): if XX1353='1' and XX1354='3' then count2=0.5; MPRINT(X): count=sum(of count1-count2); MPRINT(X): if XX1374 in('N','8888','R','9999') then drink=.; MPRINT(X): else if XX1374='1' then drink=XX1375*7; MPRINT(X): else if XX1374='2' then drink=XX1376*1; MPRINT(X): else if XX1374='3' then drink=XX1377*(1/4); MPRINT(X): else drink=0; MPRINT(X): F024=drink/count*count1; MPRINT(X): F025=drink/count*count2; MPRINT(QQ): ; MPRINT(QQ): run; NOTE: 对遗漏值执行作业,因此导致产生了遗漏值。 每个位置的指定方式: 在 (行):(栏) 的 (次数)。 89 (位於 1:234) 222 (位於 1:221) 222 (位於 2:191) 222 (位於 2:216) 219 (位於 2:222) 202 (位於 1:221) 202 (位於 2:191) 20 (位於 2:197) 202 (位於 2:216) 102 (位於 2:222) NOTE: 已从资料集 B.YY0. 读取 441 个观测值 NOTE: 资料集 WORK.YY 有 441 个观测值和 2021 个变数。 NOTE: 已使用 DATA 陈述式 (总处理时间): 实际时间 0.07 秒 CPU 时间 0.07 秒 --



※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 36.231.30.63 (台湾)
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Statistics/M.1599582807.A.CCF.html
1F:推 bugle: 234行的第1码出现了89次的遗漏值 09/16 10:35







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:iOS站内搜寻

TOP