histogram #2

  • Follow


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
0
Reply phone1 (5) 6/18/2010 2:37:33 PM

On Jun 18, 7:37=A0am, sole <pho...@katamail.com> wrote:
> hallo!
> we are trying to put labels on the top of the of =A0histogram using proc
> univariate.
> is it possible?
> can you help me?
> thenks to all

How about use title?

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

HTH

Ya
0
Reply Ya 6/18/2010 3:30:21 PM


On Jun 18, 5:30=A0pm, Ya <huang8...@gmail.com> wrote:
> On Jun 18, 7:37=A0am, sole <pho...@katamail.com> wrote:
>
> > hallo!
> > we are trying to put labels on the top of the of =A0histogram using pro=
c
> > univariate.
> > is it possible?
> > can you help me?
> > thenks to all
>
> How about use title?
>
> proc univariate data=3D..
> 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...
0
Reply sole 6/18/2010 3:33:05 PM

On Jun 18, 8:33=A0am, sole <pho...@katamail.com> wrote:
> On Jun 18, 5:30=A0pm, Ya <huang8...@gmail.com> wrote:
>
>
>
>
>
> > On Jun 18, 7:37=A0am, sole <pho...@katamail.com> wrote:
>
> > > hallo!
> > > we are trying to put labels on the top of the of =A0histogram using p=
roc
> > > univariate.
> > > is it possible?
> > > can you help me?
> > > thenks to all
>
> > How about use title?
>
> > proc univariate data=3D..
> > 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.
0
Reply Ya 6/18/2010 3:39:54 PM

3 Replies
163 Views

(page loaded in 0.058 seconds)


Reply: