| Date: | Wed, 3 Dec 2008 14:05:57 -0800 |
| Reply-To: | jasonm@UCLA.EDU |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | J M <jasonm@UCLA.EDU> |
| Subject: | Re: Removing Titles from Proc Tabulate |
|
| In-Reply-To: | <67f588aa0812031258y3cf341e1g18e1c03d1b49fe25@mail.gmail.com> |
| Content-Type: | text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" |
Quoting Akshaya Nathilvar <akshaya.nathilvar@gmail.com>:
Thank you. That's what I wanted.
How do you remove the "Sum" title?
> Do you mean labels of the variables?
> In that case
> table rate_exp=''*age='',exp='';
>
> will help you.
>
> Akshaya
>
> On Wed, Dec 3, 2008 at 3:29 PM, J M <jasonm@ucla.edu> wrote:
>
>> Is there anyway to remove titles from proc tabulate output?
>> For example, I don't want the titles "rate_exp" and "Sum".
>> proc tabulate;
>> class age exp;
>> var rate_exp;
>> table rate_exp*age,exp;
>>
>
|