Skip to content

Commit 20c6814

Browse files
author
Marie-Laure DELIGNETTE-MULLER
committed
new examples for the logo
1 parent 89f00a6 commit 20c6814

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

share/fig4logo.r

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,22 @@ cdfcompcens(list(fitln, fitw, fitg), main = "",
1818
fitcol = c("blue", "orange", "green"),
1919
fitlty = c(1, 1, 1), fitlwd = c(2, 2, 2),
2020
xlogscale = TRUE)
21+
22+
23+
## another example
24+
data(groundbeef)
25+
x1 <- groundbeef$serving[1:50]
26+
f1 <- fitdist(x1, "gamma")
27+
b1 <- bootdist(f1, niter=51)
28+
print(b1)
29+
plot(b1)
30+
plot(b1, enhance=TRUE)
31+
summary(b1)
32+
quantile(b1)
33+
par(bg = "black")
34+
CIcdfplot(b1, CI.output = "quantile", xlim = c(10, 140),
35+
CI.col = "red",fitlwd = 2, datacol = "yellow", CI.fill = "orange")
36+
37+
CIcdfplot(b1, CI.output = "quantile", xlim = c(10, 140),
38+
CI.col = "darkblue",fitlwd = 2, datacol = "snow",
39+
fitcol = "darkblue", CI.fill = "lightblue")

0 commit comments

Comments
 (0)