R/plot.YPmodel.R

Defines functions plot.YPmodel

Documented in plot.YPmodel

plot.YPmodel <-
function(x, ...)
{

	YPmodelResult <- x

	Data <- YPmodelResult$Data
	IntervalBands <- YPmodelResult$IntervalBands
	LackFitTest <- YPmodelResult$LackFitTest
	Estimate <- YPmodelResult$Estimate

	par(mfrow=c(2,2))
	plot.YPmodel.survivor(Estimate)
	plot.YPmodel.IntervalBands(IntervalBands)
	plot.YPmodel.survf(LackFitTest)
	plot.YPmodel.martint(LackFitTest)

}

Try the YPmodel package in your browser

Any scripts or data that you put into this service are public.

YPmodel documentation built on Oct. 23, 2020, 5:15 p.m.