由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS: find the first 100 mostly frequently used words in a large database
相关主题
急问:医院里都用什么database啊?面试求助!两个简单的SAS问题
pro freq +tableSAS EXCEL的问题
SAS/S-plus/R 作图问题请教ASK FOR ONE SAS QUESTION
ods rtf startpage=never does not work anymore in SAS9.2?R重要还是SAS重要?
a SAS questionnon inferiority test for the difference of two proportions in "proc freq" ?
新人求问SAS简单问题~~SAS code - help needed. 8 个包子酬谢
求教proc sql 问题求助:data manipulation的一个问题
SAS能不能批处理变量?中级SAS问题
相关话题的讨论汇总
话题: sas话题: mostly话题: words话题: bio话题: database
进入Statistics版参与讨论
1 (共1页)
t**********r
发帖数: 182
1
Here I have a large database. One key variable is BIO (CEO/CFO's bio
description). I want to find the words that are mostly frequently appearned;
say, the first 100 words that are mostly used. How can I do this using SAS?
many thanks.
A*******s
发帖数: 3942
2
SAS EM有个text miner。虽然我没用过,不过顾名思义+看图识字,应该是它了吧。

appearned;
SAS?

【在 t**********r 的大作中提到】
: Here I have a large database. One key variable is BIO (CEO/CFO's bio
: description). I want to find the words that are mostly frequently appearned;
: say, the first 100 words that are mostly used. How can I do this using SAS?
: many thanks.

d*******1
发帖数: 854
3
data bioword;
set database;
i=1;
do while (scan(bio,i,' ') ne '') ;
word=scan(bio,i,' ');
i=i+1;
output;
end;
keep word;
run;
proc freq data=bioword;
table word/out=freq;
run;
proc sort data=freq; by descending count; run;

appearned;
SAS?

【在 t**********r 的大作中提到】
: Here I have a large database. One key variable is BIO (CEO/CFO's bio
: description). I want to find the words that are mostly frequently appearned;
: say, the first 100 words that are mostly used. How can I do this using SAS?
: many thanks.

A*******s
发帖数: 3942
4
鸡蛋里挑挑骨头--还得考虑uppercase/lowercase, single/plural,tenses for verbs...

【在 d*******1 的大作中提到】
: data bioword;
: set database;
: i=1;
: do while (scan(bio,i,' ') ne '') ;
: word=scan(bio,i,' ');
: i=i+1;
: output;
: end;
: keep word;
: run;

1 (共1页)
进入Statistics版参与讨论
相关主题
中级SAS问题a SAS question
新人拜山,请教做SAS programmer主要用哪些procedure?新人求问SAS简单问题~~
SAS 问题请教求教proc sql 问题
SAS problem ask for help!SAS能不能批处理变量?
急问:医院里都用什么database啊?面试求助!两个简单的SAS问题
pro freq +tableSAS EXCEL的问题
SAS/S-plus/R 作图问题请教ASK FOR ONE SAS QUESTION
ods rtf startpage=never does not work anymore in SAS9.2?R重要还是SAS重要?
相关话题的讨论汇总
话题: sas话题: mostly话题: words话题: bio话题: database