Skip to content
Back to formatted view

Raw Message

Message-ID: <49A416A2.9040708@statistik.tu-dortmund.de>
Date: 2009-02-24T15:47:46Z
From: Uwe Ligges
Subject: control data symbols in pairs function
In-Reply-To: <70EADB44-20AD-469A-B78C-23FDCBE1BD2B@umn.edu>

Kirk Wythers wrote:
> How does one control the size and type of data symbols in pairs()? I am 
> trying to use the little dot (as in type=".") with absolutely no success.


I guess you mean pch="." and hence

pairs(data.frame, panel=panel.smooth, pch=".")


Uwe Ligges

> Here is the pairs call I am using:
> pairs(data.frame, panel=function(x,y) {points(x,y); lines(lowess(x,y))})
> 
> or even simpler:
> pairs(data.frame, panel=panel.smooth)
> 
> Any hints would be much appreciated.
> 
> ______________________________________________
> 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.