| Date: | Sat, 1 Aug 1998 23:57:11 -0500 |
| Reply-To: | "Steven J. Pierce" <sjp@MYNE.COM> |
| Sender: | "SPSSX(r) Discussion" <SPSSX-L@UGA.CC.UGA.EDU> |
| From: | "Steven J. Pierce" <sjp@MYNE.COM> |
| Organization: | Michigan State University |
| Subject: | Re: SPSS TO SAS |
| Content-Type: | text/plain; charset=us-ascii |
Annette Towler wrote:
>
> How do I transfer an SPSS file into SAS? Thanks.
Use SPSS Save As command and change the file type to .POR to create a
portable file. Here's example SAS code to read in a SPSS portable file.
filename proj "E:\SJP\CLASSES\REGRESSION\PROJECT\PROJECT.POR";
proc convert spss=proj out=project;
run;
--
Steven J. Pierce
|