Thank you very much.
Duncan Murdoch-2 wrote:
>
> On 7/10/2007 10:36 AM, livia wrote:
>> Hi all,
>>
>> I would like to plot part of the emperical CDF. Suppose the variable is
>> x, I
>> just need the part when x>1,therefore, I am using the following codes.
>>
>> tail <- x>1
>> plot(ecdf(x[tai
On 7/10/2007 10:36 AM, livia wrote:
> Hi all,
>
> I would like to plot part of the emperical CDF. Suppose the variable is x, I
> just need the part when x>1,therefore, I am using the following codes.
>
> tail <- x>1
> plot(ecdf(x[tail]), do.points=FALSE, verticals=TRUE)
>
> The "x" value starts
Hi all,
I would like to plot part of the emperical CDF. Suppose the variable is x, I
just need the part when x>1,therefore, I am using the following codes.
tail <- x>1
plot(ecdf(x[tail]), do.points=FALSE, verticals=TRUE)
The "x" value starts from 1, but the yaxs still begins from 0, not the
co