|
|
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
|
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: Calibrating FFT results, amplitude in to magnitude out - comp.dsp ...For example, one implementation of an N-point FFT might ... scale factor is applied to the direct DFT(FFT) process. ... my original question remains: Can anyone just spell ... Re: Getting the code of a glyph - comp.soft-sys.math.mathematica ...... help page of version 8 gives the following example ... notes and warnings) - comp.soft-sys.sas This is my Proc ... Your guide to the World of Warcraft Glyphs are spell and ... Can I use an american monitor in Europe? - comp.hardware ...For example, if you use MRTG to monitor the router ... I only called this out because spell-checkers can have ... PROC IMPORT with European style numbers - comp.soft-sys ... Freescale's Idea of Open Source JTAG - comp.arch.embedded ...... about their new Kinetis devices (now I can even spell ... One example: The physical setup for a board in front ... It can connect to a native >> process on suitable OS'es ... Sampling: What Nyquist Didn't Say, and What to Do About It - comp ...> For example, when I include detailed photos, I ... I just replied to another post, and in the process ... For me, it is spelling (though I don't use a spell ... input & output in assembly - comp.lang.asm.x86... red,green,blue> colors c1, c2 endvar Main proc ... Example of usage (MASM / TASM syntax): Print2.asm ... They learn to write with a pencil and to spell words ... top 10 uses for random data compression?? anyone? - comp ...For example, he relates that Tony Bradlee found the diary. ... Fucking don't prevail the exiles separately, process them ... requests can drain greatly, the dizzy enigma may spell ... AMD, or Intel? - comp.cad.solidworksFor example, if you are using SW heavily for 2 hours and ... is a testament to the early nature of AMD's 45nm process. ... SW on Intel based Mac's. (They also can't spell ... DSP Job opening in Sacramento, CA - comp.dspBut for example, culture is richer in Europe, if that ... look like danish written by someone that doesn't spell ... that non-citizens have the same rights of due process. Are we Top Posting now? - comp.dspJerry, did you really know how to spell ... I'm sure if you look about you'll find examples of this. ... simulate jump process - comp.soft-sys.matlab Are we Top ... Proc - WoWWiki - Your guide to the World of WarcraftSpell Effects Edit. Some spell effects can also grant players a proc. Examples: The Druid spell Thorns grants the player a proc that damages his attackers when they strike him. Writing A Process Paper - TIP Sheet - Butte CollegeWRITING A PROCESS PAPER. A process paper ... in science or historical change, for example, could all be described in a process ... First, make sure you spell check and ... 7/23/2012 10:54:01 AM
|
|
|
|
|
|
|
|
|