R/alt.data.r

Defines functions alt.data

Documented in alt.data

#alt.data

# This function reads reliability life test data for a single stress level using the flexible input format
# also provided for WeibullR::mleframe.  Code in follow-on functions will have to identify and handle the data as it is stored
# in order to perform future processing. 


alt.data<-function(x, s=NULL, interval=NULL, stress) {						
	lrq<-mleframe.alt(x,s, interval)					
	obj<-list(stress = stress, data = lrq)					
	class(obj) <- "alt.data"					
	obj					
	}					

Try the WeibullR.ALT package in your browser

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

WeibullR.ALT documentation built on June 28, 2022, 3 a.m.