Nothing
# -------------------------------------------------------------------------------
# This file is part of 'diversityForest'.
#
# 'diversityForest' is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 'diversityForest' is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with 'diversityForest'. If not, see <http://www.gnu.org/licenses/>.
#
# NOTE: 'diversityForest' is a fork of the popular R package 'ranger', written by Marvin N. Wright.
# Most R and C++ code is identical with that of 'ranger'. The package 'diversityForest'
# was written by taking the original 'ranger' code and making any
# changes necessary to implement diversity forests.
#
# -------------------------------------------------------------------------------
# Autor: Marvin N. Wright
timepoints <- function(x, ...) UseMethod("timepoints")
# Autor: Marvin N. Wright
#' @export
timepoints.divfor.prediction <- function(x, ...) {
if (!inherits(x, "divfor.prediction")) {
stop("Object ist no divfor.prediction object.")
}
if (x$treetype != "Survival") {
stop("No timepoints found. Object is no Survival prediction object.")
}
if (is.null(x$unique.death.times)) {
stop("No timepoints found.")
}
return(x$unique.death.times)
}
# Autor: Marvin N. Wright
#' @export
timepoints.divfor <- function(x, ...) {
if (!inherits(x, "divfor")) {
stop("Object ist no divfor object.")
}
if (x$treetype != "Survival") {
stop("No timepoints found. Object is no Survival forest.")
}
if (is.null(x$unique.death.times)) {
stop("No timepoints found.")
}
return(x$unique.death.times)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.