Description Usage Arguments Examples
Title
1 2 3 4 5 6 7 8 9 10 | Fr.profile(
fcn,
gmle.out,
nlevels = 10,
lowest.conf.level = 0.1,
xlab = as.character(substitute(fcn)),
distribution = gmle.out$model$distribution,
subtitle = " ",
...
)
|
fcn |
|
gmle.out |
|
nlevels |
|
lowest.conf.level |
|
xlab |
|
distribution |
|
subtitle |
|
... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | ## Not run:
BearingCage.ld <- frame.to.ld(bearingcage,
response.column = 1,
censor.column = 2,
case.weight.column = 3,
time.units = "Hours")
summary(BearingCage.ld)
BearingCage.weibull.gmle.out <- ls.mle(BearingCage.ld,
distribution = "Weibull")
names(BearingCage.weibull.gmle.out)
BearingCage.weibull.gmle.out.jcr <- FillRegion(BearingCage.weibull.gmle.out,
nbound = 4,
iter = 500,
cull = 2)
summary(BearingCage.weibull.gmle.out.jcr)
mleprobplot(BearingCage.ld,
distribution = "Weibull",
xlim = c(200,10000),
ylim = c(.00031,.19),
time.vec = log.seq(200,10000,20))
basic.gmleprobplot(BearingCage.ld,
distribution = "Weibull",
xxx.mle.out = BearingCage.weibull.gmle.out,
my.title = "",
cexlab = 1.5,
conf.level = 0.95,
length.time.vec = 20,
xlim = c(200,10000),
ylim = c(.00031,.19),
time.vec = log.seq(200,10000,20),
ciMethod = "lr.approx")
basic.gmleprobplot(BearingCage.ld,
distribution = "Weibull",
xxx.mle.out = BearingCage.weibull.gmle.out,
my.title = "",
cexlab = 1.5,
conf.level = 0.95,
length.time.vec = 20,
xlim = c(200,10000),
ylim = c(.00031,.19),
time.vec = log.seq(200,10000,20))
profile.plot(Fr.profile(fcn <- function(x){x[1]},
BearingCage.weibull.gmle.out))
tmppro <- Fr.profile(fcn <- function(x){x[1]},
BearingCage.weibull.gmle.out)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.