R/cdf.plot.R

Defines functions cdf.plot

Documented in cdf.plot

cdf.plot <-
function(z)
{
	plot(z$x.info[,'z'],z$x.info[,'Emp'],xlab='Sorted observations',las=2,cex.axis=.8,ylab='Cumulative distribution function',
		type='n')
	lines(z$x.info[,'z'],z$x.info[,'Fz'],col='red')
	points(z$x.info[,'z'],z$x.info[,'Emp'],cex=.5,pch=19)
}

Try the FAmle package in your browser

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

FAmle documentation built on March 18, 2022, 5:29 p.m.