LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2009, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 11 Mar 2009 09:42:51 -0500
Reply-To:   "./ ADD NAME=Data _null_;" <iebupdte@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "./ ADD NAME=Data _null_;" <iebupdte@GMAIL.COM>
Subject:   Re: Removing the automatic variable names....
Comments:   To: Keith Wright <kwright8@att.net>
In-Reply-To:   <13F389B9441D4A6E88E42E7DC31D3325@KeithWright>
Content-Type:   text/plain; charset=ISO-8859-1

filename OUTFILE 'c:\sasdata\partIIIQ2\irtgen\ref.txt' lrecl=32767; data _null_; file outfile dsd dlm='09'x; set sashelp.class; put (_all_)(:); run;

On 3/11/09, Keith Wright <kwright8@att.net> wrote: > Hi, please help, I spent all night searching the Internet and reading books trying to figure out how to remove the variable names. I am not formatting any specific names, when I use the PROC EXPORT below to send my output file to the computer, it automatically gives the following with R1, R2, etc...I do not want these variable names in the output only the values starting on the second row. I would appreciate any assistance, thanks. I only want the 1s and 0s and values of Theta not the variable names... > > R1 R2 R3 R4.......THETA > > 1 0 1 0 ........2.5.6 > > > > PROC EXPORT DATA= &OUT OUTFILE = 'c:\sasdata\partIIIQ2\irtgen\ref.txt' > > DBMS = DLM; > > Keith D Wright > Georgia State Univ. > Graduate Research Assistant (Dr. Chris Oshima) > 770-490-4106 >


Back to: Top of message | Previous page | Main SAS-L page