Learn R Programming

NADA (version 1.6-1.1)

ros-class: Class "ros"

Description

A "ros" object is returned from ros. It extends the "lm" class returned from lm.

Arguments

Objects from the Class

Objects can be created by calls of the form ros(obs, censored).

Slots

%No slots, it just extends a list.
.Data:

Object of class "list"

Extends

Class "list", from data part. Class "vector", by class "list".

Methods

lines

signature(x = "ros"): ...

mean

signature(x = "ros"): ...

median

signature(x = "ros"): ...

plot

signature(x = "ros", y = "missing"): ...

predict

signature(object = "ros"): ...

print

signature(x = "ros"): ...

quantile

signature(x = "ros"): ...

sd

signature(x = "ros"): ...

summary

signature(object = "ros"): ...

See Also

ros

Examples

Run this code
# NOT RUN {
    obs      = c(0.5,    0.5,   1.0,  1.5,   5.0,    10,   100)
    censored = c(TRUE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE)

    class(ros(obs, censored))
# }

Run the code above in your browser using DataLab