由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 用SAS找单词
相关主题
求推荐online stat master program集思广益: Stat. Master jobs
how to create page x of y in SAS[合集] 统计master?还是phd?
给还在选择的人一个想法:把cs和stat prerequisite都修了辅修stats或biostats的问题
求解SAS习题,谢谢[合集] Stat/Biostat MS Job Market Going Down!
WHICH ONE IS CORRECT?想转统计,请大家给些建议吧
master of science 还是 master of applied statisticsUCONN的统计master 怎么样? 值得申吗?
Statistical Analyst position opening请教计算机申请统计的一些问题
请问处理大数据库用什么软件好?请推荐几个性价比高的(Stat/Biostat)master program
相关话题的讨论汇总
话题: masters话题: statistics话题: master话题: sas话题: 20
进入Statistics版参与讨论
1 (共1页)
t**********r
发帖数: 182
1
first find a word "Masters" in a paragraph;
then if there is a "statistics" 20 space before or 20 space after "Master",
create a dummy variable Master_stat = 1.
Can anybody help me with the SAS code???
thanks.
D******n
发帖数: 2836
2
what is 20 spaces before?
l***a
发帖数: 12410
3
I assume you already store the text as a variable x in a data set a.
data a;
set a;
y=index('MASTERS',upcase(x));
z=substr(a, y-20, y+27);
w=index('STATISTICS',upcase(z));
if w>0 then master_stat=1;
drop y z w;
run;

,

【在 t**********r 的大作中提到】
: first find a word "Masters" in a paragraph;
: then if there is a "statistics" 20 space before or 20 space after "Master",
: create a dummy variable Master_stat = 1.
: Can anybody help me with the SAS code???
: thanks.

s******y
发帖数: 352
4
this is where Regx come in handy.
data test;
infile cards truncover;
input text $150.;
Master_stat=^^prxmatch('/(?<=statistics\s{20})Masters|Masters(?=\s{20}
statistics)/io',text);
cards;
The department of statistics Masters
The department of statistics Masters
masters statistics sucks
;
run;
proc print;
run;
s*********k
发帖数: 1989
5
nice, regular expression. Easy for PERL person.
Tough for newbie.

【在 s******y 的大作中提到】
: this is where Regx come in handy.
: data test;
: infile cards truncover;
: input text $150.;
: Master_stat=^^prxmatch('/(?<=statistics\s{20})Masters|Masters(?=\s{20}
: statistics)/io',text);
: cards;
: The department of statistics Masters
: The department of statistics Masters
: masters statistics sucks

t**********r
发帖数: 182
6
NIU.
1 (共1页)
进入Statistics版参与讨论
相关主题
请推荐几个性价比高的(Stat/Biostat)master programWHICH ONE IS CORRECT?
[合集] 被HARVARD MASTER OF STAT录取了master of science 还是 master of applied statistics
OfferStatistical Analyst position opening
stat master from iowa state university好找工作的方向是什么?请问处理大数据库用什么软件好?
求推荐online stat master program集思广益: Stat. Master jobs
how to create page x of y in SAS[合集] 统计master?还是phd?
给还在选择的人一个想法:把cs和stat prerequisite都修了辅修stats或biostats的问题
求解SAS习题,谢谢[合集] Stat/Biostat MS Job Market Going Down!
相关话题的讨论汇总
话题: masters话题: statistics话题: master话题: sas话题: 20