Skip to content
Back to formatted view

Raw Message

Message-ID: <47D3B664.2000307@statistik.tu-dortmund.de>
Date: 2008-03-09T10:05:24Z
From: Uwe Ligges
Subject: Legend names
In-Reply-To: <000e01c881c8$7333b530$5a52fea9@FIXO>

Joaquim J. S. Ramalho wrote:
> Hi,
> 
> I need to use greek symbols in a legend. When I write:
> 
> a <- 1
> leg.names <- as.expression(substitute(alpha==p,list(p=a)))
> legend("bottomright",legend=leg.names,lty=1)
> 
> everything works fine. However, I want alpha=lambda=1. Therefore, I wrote:
> 
> leg.names <- as.expression(substitute(alpha==lambda==p,list(p=a)))


You have to group parts of alpha==lambda==p (it would not be a valid S 
statement either!), e.g.:

alpha == {lambda == p}

Uwe Ligges




> but this does not work.
> 
> Similarly, how can I write alpha=0, lambda=1?
> 
> Thank you very much for your help.
> 
> Joaquim Santos
> 
> ______________________________________________
> 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.