Skip to content
Prev 159975 / 398500 Next

I have an xyplot, I want to keep the format, but only show x or y

On Thu, Oct 23, 2008 at 11:20 AM, Porter,Phillip C <pcporter at ufl.edu> wrote:
There are several other functions for visualization of univariate
data; you will need to decide which one is suitable for your needs,
e.g.,

densityplot(~x | as.factor(ID))
qqmath(~x | as.factor(ID))
bwplot(~x | as.factor(ID))
bwplot(as.factor(ID) ~ x)
stripplot(as.factor(ID) ~ x)

-Deepayan