print.HazardShape: Print method for 'HazardShape' objects

View source: R/print.HazardShape.R

print.HazardShapeR Documentation

Print method for HazardShape objects

Description

[Experimental]

Displays the estimated hazard shape given a HazardShape object.

Usage

## S3 method for class 'HazardShape'
print(x, ...)

Arguments

x

an object of class HazardShape, generated with TTT_hazard_shape.

...

further arguments passed to or from other methods.

Author(s)

Jaime Mosquera GutiƩrrez jmosquerag@unal.edu.co

Examples

#--------------------------------------------------------------------------------
# Example 1: Increasing hazard and its corresponding TTT plot with simulated data

hweibull <- function(x, shape, scale){
  dweibull(x, shape, scale)/pweibull(x, shape, scale, lower.tail = FALSE)
  }
curve(hweibull(x, shape = 2.5, scale = pi), from = 0, to = 42,
               col = "red", ylab = "Hazard function", las = 1, lwd = 2)

y <- rweibull(n = 50, shape = 2.5, scale = pi)
my_initial_guess <- TTT_hazard_shape(formula = y ~ 1)
print(my_initial_guess)


#--------------------------------------------------------------------------------


Jaimemosg/EstimationTools documentation built on Oct. 23, 2023, 10 a.m.