Date: Mon, 3 Sep 2007 10:36:29 -0400
Reply-To: Ken Borowiak <EvilPettingZoo97@AOL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ken Borowiak <EvilPettingZoo97@AOL.COM>
Subject: Re: proc catalog
Content-Type: text/plain; charset=ISO-8859-1
On Sun, 2 Sep 2007 23:09:46 -0700, tax_qa@YAHOO.COM wrote:
>Hi,
>
>I have 500 GPLOTs, and I need to modify the description for 200
>GPLOTs. How to modify?
>
>Thank you.
>
>Frank
>
> Contents of Catalog SASOUT.TOC
>
> Name Type Create Date Description
>ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ
> GPLOT50 GRSEG 02SEP2007:22:23:50 TX:Placebo,PT:0120
> GPLOT100 GRSEG 02SEP2007:22:23:50 TX:Placebo,PT:0344
> GPLOT101 GRSEG 02SEP2007:22:23:50 TX:Placebo,PT:0789
> GPLOT399 GRSEG 02SEP2007:22:23:50 TX:Placebo,PT:0209
> GPLOT43 GRSEG 02SEP2007:22:23:50 TX:Placebo,PT:2009
> GPLOT6 GRSEG 02SEP2007:22:23:47 TX:PPPP,PT:0908
> GPLOT7 GRSEG 02SEP2007:22:23:47 TX:PPPP,PT:1000
> GPLOT8 GRSEG 02SEP2007:22:23:47 TX:PPPP,PT:0109
> GPLOT9 GRSEG 02SEP2007:22:23:47 TX:PPPP,PT:0123
>
>....
Frank,
Below is some sample code:
proc sort data=sashelp.class out=class ;
by sex ;
run ;
proc gplot data=class ;
by sex ;
plot height*weight ;
run ;
quit ;
proc catalog cat=work.gseg et=grseg ;
modify gplot(desc="Put your new label here") ;
run ;
modify gplot1(desc="Another sweet label") ;
run ;
quit ;
If you want to add some systematic description to the catalog entries,
you'll need to provide more information.
HTH,
Ken
|