Date: Wed, 24 May 2006 14:48:38 -0400
Reply-To: Joe Whitehurst <joewhitehurst@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Joe Whitehurst <joewhitehurst@GMAIL.COM>
Subject: Re: change value
In-Reply-To: <OF8C829339.6A47603D-ON85257178.0066A8AE-85257178.0066BA02@dom.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Nat,
Now that you mentioned Proc Scatter, I think some of the other Procs by
Users also got dropped.
Joe
On 5/24/06, Nat Wooding <Nathaniel_Wooding@dom.com> wrote:
>
> Joe
>
> Close but no cigar.
>
> Proc Scatter was dropped after SAS 72 or thereabouts and was replaced by
> Proc Plot.
>
> Nat
>
>
>
> Joe Whitehurst
> <joewhitehurst@GM
> AIL.COM> To
> Sent by: "SAS(r) SAS-L@LISTSERV.UGA.EDU
> Discussion" cc
> <SAS-L@LISTSERV.U
> GA.EDU> Subject
> Re: change value
>
> 05/24/2006 02:34
> PM
>
>
> Please respond to
> Joe Whitehurst
> <joewhitehurst@GM
> AIL.COM>
>
>
>
>
>
>
> Indeed it does. Remember, Goodnight once said that anything that ever
> worked in SAS would always work in SAS!
>
> On 5/24/06, data _null_; <datanull@gmail.com> wrote:
> >
> > I used version 8. I wonder if V9 will also have PROC EDITOR.
> >
> > On 5/24/06, Joe Whitehurst <joewhitehurst@gmail.com> wrote:
> > >
> > > Data _null_,
> > >
> > > Currently undocumented Proc editor still works after all these years?
> > >
> > > Joe
> > >
> > >
> > > On 5/24/06, data _null_; <datanull@gmail.com> wrote:
> > > > Here is a way, that works based on the information you have
> provided.
> > > > Let's see if any one it paying attention :-)
> > > >
> > > > data work.test;
> > > > input age sex:$1. @@;
> > > > cards;
> > > > 21 M 23 F 200 M
> > > > ;;;;
> > > > run;
> > > > proc editor data=work.test;
> > > > find 1,last age=200;
> > > > list;
> > > > replace age=20;
> > > > list;
> > > > run;
> > > > proc print data= work.test;
> > > > run;
> > > >
> > > > On 5/24/06, ljmpll@sohu.com <ljmpll@sohu.com> wrote:
> > > > > I want to change a value in a table.
> > > > > example:
> > > > > age sex
> > > > > 21 M
> > > > > 23 F
> > > > > 200 M
> > > > > so, I want to change the third record value to "20 M". If I
> > write
> > > > > "new age=age/10 ", the first and the second age value would be
> > > > > changed,it is needless. Then, how can I write the program that
> only
> > > > > change one value "20=200/10"
> > > > >
> > > >
> > >
> > >
> >
>
>
>
> -----------------------------------------
> CONFIDENTIALITY NOTICE: This electronic message contains
> information which may be legally confidential and/or privileged and
> does not in any case represent a firm ENERGY COMMODITY bid or offer
> relating thereto which binds the sender without an additional
> express written confirmation to that effect. The information is
> intended solely for the individual or entity named above and access
> by anyone else is unauthorized. If you are not the intended
> recipient, any disclosure, copying, distribution, or use of the
> contents of this information is prohibited and may be unlawful. If
> you have received this electronic transmission in error, please
> reply immediately to the sender that you have received the message
> in error, and delete it. Thank you.
>
|