[R] adding year information to a scatter plot

Muhammad Rahiz muhammad.rahiz at ouce.ox.ac.uk
Sun May 2 23:17:44 CEST 2010


Hi Ozan,

The {calibrate} package allows you to do that.

install.packages("calibrate")
library(calibrate)
df=data.frame(year=c(2001,2002,2003),a=c(8,9,7),b=c(100,90,95))
df
plot(b~a,data=df)
textxy(df$a,df$b,df$year)

Muhammad



On 05/02/2010 08:25 PM, Ozan Bakis wrote:
> Hi R users,
>
> I would like to add year information to each point in a scatter plot. The
> following
> example shows what i mean:
>
> df=data.frame(year=c(2001,2002,2003),a=c(8,9,7),b=c(100,90,95))
> df
> plot(b~a,data=df)
>
> Now, I would like to see which point belongs to 2001, 2002 and 2003 in the
> above
> graphic.
>
> Thank you very much,
> ozan
>
> 	[[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



More information about the R-help mailing list