Date: Sun, 4 Jun 2000 09:07:34 -0400
Reply-To: hhstuart@ma.ultranet.com
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Hoff Stuart <hhstuart@MA.ULTRANET.COM>
Subject: Re: create sas data set on the web page
Content-Type: text/plain; charset=us-ascii
I have done this using SAS/Intrnet.
Hoff Stuart
Araga007 wrote:
>
> I have a question that if it is a possible to create sas data set on the web
> page, save it under a certain libname , and run proc procedure by using the
> data which I have just created on the web? If it is possible I would like to
> know tis syntax.
>
> for example the data that I want to create on the web page is following;
>
> libname wcgi "d:/sascourse/wcgi/appserver/examples";
> data wcgi. regress;
> input Mid Final;
> datalines;
> 68 75
> 49 63
> 60 57
> 68 88
> ;
> run;
>
> Then, I want to use the above data to run proc reg.
>
> %out2htm(capture=on);
> proc reg data=wcgi.regress;
> model.......so on...
> .....
> %out2htm(capture=off........)
>
> So please help me.
|