Date: Tue, 23 Sep 2008 07:25:26 -0700
Reply-To: "Yee.Chuang" <mcdragons@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Yee.Chuang" <mcdragons@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: Anyone who can run this program?
Content-Type: text/plain; charset=ISO-8859-1
On Sep 23, 9:14 pm, wie...@INED.FR (Andre Wielki) wrote:
> Yee,
> My computer is normal
> and produce the following log
> IF I CLOSE your ods html!
> with an ods html close; statement.
>
> If you were able to install sas, i think your little program would work!
>
> There is none macro in your program at all
>
> Andre
>
>
>
> > ods html body = 'ex1.htm';
> > NOTE: Writing HTML Body file: ex1.htm
> > 2 data ex1;
> > 3 input x@@;
> > 4 cards;
>
> > NOTE: SAS went to a new line when INPUT statement reached past the end
> > of a line.
> > NOTE: The data set WORK.EX1 has 60 observations and 1 variables.
> > NOTE: DATA statement used (Total process time):
> > real time 0.42 seconds
> > cpu time 0.03 seconds
>
> > 10 ;
> > 11 proc univariate;
>
> > NOTE: PROCEDURE UNIVARIATE used (Total process time):
> > real time 0.48 seconds
> > cpu time 0.04 seconds
>
> > 12 proc capability graphics;
> > 13 histogram x/normal;
> > 14 cdfplot x/normal;
> > 15 qqplot x/normal;
> > 16 run;
>
> > NOTE: The GRAPHICS option is no longer required. High resolution
> > graphics is enabled by default.
> > NOTE: Processing beginning for variable x.
> > NOTE: Processing HISTOGRAM statement number 1.
> > NOTE: 61 RECORDS WRITTEN TO d:\sasv913\capabili.gif
> > NOTE: The chi-square statistic has been computed using expected values
> > less than 1. You can regroup the data using
> > the MIDPOINTS= option.
> > NOTE: Processing QQPLOT statement number 1.
> > NOTE: 35 RECORDS WRITTEN TO d:\sasv913\capabil1.gif
> > NOTE: Processing CDFPLOT statement number 1.
> > NOTE: 45 RECORDS WRITTEN TO d:\sasv913\capabil2.gif
> > NOTE: There were 60 observations read from the data set WORK.EX1.
> > NOTE: PROCEDURE CAPABILITY used (Total process time):
> > real time 2.06 seconds
> > cpu time 0.26 seconds
>
> > 17
> > 18 ods html close;
>
> Yee.Chuang a écrit :
>
>
>
> > Today I need to finish a small homework with SAS, but after writing
> > the sas macro, I tried to submit it. unluckily, my computer is not
> > powerful enough to run this. When using "cdfplot" or "qqplot" to plot
> > a data set, my cpu goes to 100%!
> > it seems that I couldn't finish my work with this kind of computer, it
> > sucks.
>
> > Anyone nice enough to help me with this, maybe you can mail me the
> > final cdfplot and qqplot pictures to me, thanks!
>
> > here is my sas macro:
>
> > ods html body = 'ex1.htm';
> > data ex1;
> > input x@@;
> > cards;
> > 126 149 143 141 127 123 137 132 135 134 146 142
> > 135 141 150 137 144 137 134 139 148 144 142 137
> > 147 138 140 132 149 131 139 142 138 145 147 137
> > 135 142 151 146 129 120 143 145 142 136 147 128
> > 142 132 138 139 147 128 139 146 139 131 138 149
> > ;
> > proc univariate;
> > proc capability graphics;
> > histogram x/normal;
> > cdfplot x/normal;
> > qqplot x/normal;
> > run;
>
> > PS: My PC is HP-Compaq nx6325, using AMD turion 64 MK-36 CPU.
>
> --
> André WIELKI
> INED (Institut National d'Etudes Démographiques)
> Service Informatique
> 133 Boulevard Davout 75980 Paris Cedex 20
> mél : wie...@ined.fr tél : 33 (0) 1 56 06 21 54
I use
"ods html close;"
at the end of my program(Not macro). It doesn't work at all.
|