From: sole on
hallo!
we are trying to put labels on the top of the of histogram using proc
univariate.
is it possible?
can you help me?
thenks to all
From: Ya on
On Jun 18, 7:37 am, sole <pho...(a)katamail.com> wrote:
> hallo!
> we are trying to put labels on the top of the of  histogram using proc
> univariate.
> is it possible?
> can you help me?
> thenks to all

How about use title?

proc univariate data=..
var ..
histogram;
title "your label here";
run;

HTH

Ya
From: sole on
On Jun 18, 5:30 pm, Ya <huang8...(a)gmail.com> wrote:
> On Jun 18, 7:37 am, sole <pho...(a)katamail.com> wrote:
>
> > hallo!
> > we are trying to put labels on the top of the of  histogram using proc
> > univariate.
> > is it possible?
> > can you help me?
> > thenks to all
>
> How about use title?
>
> proc univariate data=..
> var ..
> histogram;
> title "your label here";
> run;
>
> HTH
>
> Ya

i forget a word...

the label on the top of the bar of the histogram... not the title of
the graph...
From: Ya on
On Jun 18, 8:33 am, sole <pho...(a)katamail.com> wrote:
> On Jun 18, 5:30 pm, Ya <huang8...(a)gmail.com> wrote:
>
>
>
>
>
> > On Jun 18, 7:37 am, sole <pho...(a)katamail.com> wrote:
>
> > > hallo!
> > > we are trying to put labels on the top of the of  histogram using proc
> > > univariate.
> > > is it possible?
> > > can you help me?
> > > thenks to all
>
> > How about use title?
>
> > proc univariate data=..
> > var ..
> > histogram;
> > title "your label here";
> > run;
>
> > HTH
>
> > Ya
>
> i forget a word...
>
> the label on the top of the bar of the histogram... not the title of
> the graph...- Hide quoted text -
>
> - Show quoted text -

Each bar has it's own label? What do you want the label to be? The
percentage?
If you really want to have the full control of the histogram, you may
have to capture the
data and use proc gchart to draw your histogram. You may also consider
using annotation.