| 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/
|