Re: [R] hide ends of line in a density plot

2010-07-06 Thread Joshua Wiley
Hello, If you're just looking to 'zoom in' as it were, this should do it: plot(density(j), xlim = c(98, 102)) HTH, Josh On Tue, Jul 6, 2010 at 8:50 AM, Albert Vilella wrote: > Hi, > > (I googled for this answer but didn't find anything) > > I am using density plot and I want to trim the ends

[R] hide ends of line in a density plot

2010-07-06 Thread Albert Vilella
Hi, (I googled for this answer but didn't find anything) I am using density plot and I want to trim the ends of the line. eg: i = rnorm(100,100,2) j = subset(i,i<102 & i>98) summary(j) plot(density(j)) I only want the line to go from 98 to 102. How can I limit the line (and the axis) to the val