On Mar 12, 2010, at 10:09 AM, Jack Luo wrote:

> Hi,
> 
> I am trying to use function pairs to plot the scatterplot, but I only want
> to keep the upper triangle, what's the argument to do this?
> 
> Thanks,
> 
> -Jack

Try setting the 'lower.panel' argument to NULL.

Compare:

  pairs(USJudgeRatings)

to:

  pairs(USJudgeRatings, lower.panel = NULL)

HTH,

Marc Schwartz

______________________________________________
R-help@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.

Reply via email to