Displaying 5 results from an estimated 5 matches for "textt".
Did you mean:
text
2003 Jan 03
1
Take care with codes()! (was type of representation)
...between cells
abline(v=(0:nlevels(data$Car)+0.5))
abline(h=(0:nlevels(data$Color)+0.5))
# annotate with actual values
text(x=as.numeric(data$Car), # as.numeric give numeric values
y=as.numeric(data$Color),
labels=format(data$Value), # label value
col="black", # textt color
)
# put a nice title
title(main="Car by Color Popularity\n(Dot size proportional to popularity)")
-Greg
> -----Original Message-----
> From: ripley at stats.ox.ac.uk [mailto:ripley at stats.ox.ac.uk]
> Sent: Friday, January 03, 2003 1:53 PM
> To: Warnes, Gregory...
2003 Mar 08
0
RE: Text Rotation (was: Take care with codes()!)
...(0:nlevels(data$Color)+0.5))
> >
> > # annotate with actual values
> > text(x=as.numeric(data$Car), # as.numeric give numeric values
> > y=as.numeric(data$Color),
> > labels=format(data$Value), # label value
> > col="black", # textt color
> > )
> >
> > # put a nice title
> > title(main="Car by Color Popularity\n(Dot size proportional
> to popularity)")
> >
> >
> > -Greg
> >
> >
> >>-----Original Message-----
> >>From: ripley at stat...
2003 Mar 08
0
RE: Text Rotation (was: Take care with codes()!)
...gt; > >
> > > # annotate with actual values
> > > text(x=as.numeric(data$Car), # as.numeric give numeric values
> > > y=as.numeric(data$Color),
> > > labels=format(data$Value), # label value
> > > col="black", # textt color
> > > )
> > >
> > > # put a nice title
> > > title(main="Car by Color Popularity\n(Dot size proportional
> > to popularity)")
> > >
> > >
> > > -Greg
> > >
> > >
> > >>-----...
2003 Jan 03
2
type of representation
Hi
I have some data that i want to plot but i don't find how to do it. I have car
types (bmw,renault,mercedes,seat ...), colors and a number for each car
type-color relation.I want to come up with a matrix representation of cars vs
colors where in each intersection i could set a dot proportional in size to my
third variable.
Can anybody give me a clue of hoe to come up with such
2006 Mar 18
0
No subject
...ine(v=(0:nlevels(data$Car)+0.5))
> abline(h=(0:nlevels(data$Color)+0.5))
>
> # annotate with actual values
> text(x=codes(data$Car), # codes give numeric values
> y=codes(data$Color),
> labels=format(data$Value), # label value
> col="black", # textt color
> )
>
> # put a nice title
> title(main="Car by Color Popularity\n(Dot size proportional to popularity)")
>
>
> -Greg
>
> > -----Original Message-----
> > From: allende at gredos.cnb.uam.es [mailto:allende at gredos.cnb.uam.es]
> > Sent...