example of proc spell

  • Follow


Hi

I am just finishing writing a user group presentation about old procs
and I am trying to find some simple code that uses proc spell to
achieve an outcome (any outcome will do).

If you could describe what the proc spell code does that would be a
bonus.

Cheers and thanks

0
Reply queanbeyan (66) 2/14/2005 10:39:15 PM

Here's one from Paul D...

http://xrl.us/e5ev

Paul Choate
DDS Data Extraction
(916) 654-2160

-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
queanbeyan@HOTMAIL.COM
Sent: Monday, February 14, 2005 2:39 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: example of proc spell

Hi

I am just finishing writing a user group presentation about old procs
and I am trying to find some simple code that uses proc spell to
achieve an outcome (any outcome will do).

If you could describe what the proc spell code does that would be a
bonus.

Cheers and thanks
0
Reply pchoate (2551) 2/14/2005 11:03:44 PM


* Create a dictionary using words in text file;
proc spell  words="c:\temp\words.txt" create dict=work.mycatalog.spell;
run;

* Update existing dictionary using words in text file;
proc spell words="c:\temp\words.txt" dict=work.mycatalog.spell;
run;

* Use PROC SPELL and custom dictionary.  WORDLIST is text file of words to
check;
proc spell wordlist="c:\temp\words2check.txt" dict=work.mycatalog.spell;
run;


RandyHerbison@westat.com

-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
queanbeyan@HOTMAIL.COM
Sent: Monday, February 14, 2005 5:39 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: example of proc spell


Hi

I am just finishing writing a user group presentation about old procs and I
am trying to find some simple code that uses proc spell to achieve an
outcome (any outcome will do).

If you could describe what the proc spell code does that would be a bonus.

Cheers and thanks
0
Reply RandyHerbison (644) 2/14/2005 11:11:16 PM

2 Replies
46 Views

(page loaded in 0.061 seconds)

Similiar Articles:













7/23/2012 10:54:01 AM


Reply: