- Mse
signature(ModelFit = "GMCLFit", FullTriangles = "triangles")
: See Mse
- Mse
signature(ModelFit = "MCLFit", FullTriangles = "triangles")
: See Mse
- [
signature(x = "triangles", i = "missing", j = "numeric", drop = "logical")
: Method for primitive function "[" to subset certain columns. If drop=TRUE
, rows composed of all "NA"s are removed. Dimensions are not dropped.
- [
signature(x = "triangles", i = "missing", j = "numeric", drop = "missing")
: Method for primitive function "[" to subset certain columns, where rows composed of all "NA"s are removed. Dimensions are not dropped.
- [
signature(x = "triangles", i = "numeric", j = "missing", drop = "logical")
: Method for primitive function "[" to subset certain rows. If drop=TRUE
, columns composed of all "NA"s are removed. Dimensions are not dropped.
- [
signature(x = "triangles", i = "numeric", j = "missing", drop = "missing")
: Method for primitive function "[" to subset certain rows, where columns composed of all "NA"s are removed. Dimensions are not dropped.
- [
signature(x = "triangles", i = "numeric", j = "numeric", drop = "missing")
: Method for primitive function "[" to subset certain rows and columns. Dimensions are not dropped.
- [<-
signature(x = "triangles", i = "numeric", j = "numeric", value = "list")
: Method for primitive function "[<-" to replace one cell in each triangle with values specified in value
.
- coerce
signature(from = "list", to = "triangles")
: Method to construct a "triangles" object from "list".
- dim
signature(x = "triangles")
: Method to get the dimensions. The return value is a vector of length 3, where the first element is the number of triangles, the sencond is the number of accident years, and the third is the number of development years.
- cbind2
signature(x = "triangles", y="missing")
: Method to column bind all triangles using cbind
internally.
- rbind2
signature(x = "triangles", y="missing")
: Method to row bind all triangles using rbind
internally.