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 (April 2010, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 12 Apr 2010 12:33:01 -0700
Reply-To:   David J Moriarty <djmoriarty@CSUPOMONA.EDU>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   David J Moriarty <djmoriarty@CSUPOMONA.EDU>
Subject:   Re: left justify Print in Proc IML
Content-Type:   text/plain; charset="us-ascii"; format=flowed

At 11:22 AM Monday 4/12/2010, Michael A McDaniel/AC/VCU wrote: >In Proc IML, I write syntax such as > >PRINT "The value of x is" x; > >The printed text is centered on the page. Is there a way to make it left >justified?

Not elegant, but you might try something like: proc iml; file print; x=4; PUT @1 "The value of x is" x; quit; ------------------------------------------- David J. Moriarty, Ph.D. Professor and Graduate Coordinator Biological Sciences Department California State Polytechnic University Pomona, CA 91768-2557 USA http://www.csupomona.edu/~djmoriarty/


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