This file is indexed.

/usr/share/doc/r-cran-bbmle/tests/optimx.Rout.save is in r-cran-bbmle 1.0.20-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
R Under development (unstable) (2017-10-27 r73634) -- "Unsuffered Consequences"
Copyright (C) 2017 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(bbmle)
Loading required package: stats4
> old_opt <- options(digits=3)
> if (require(optimx)) {
+ x <- 0:10
+ y <- c(26, 17, 13, 12, 20, 5, 9, 8, 5, 4, 8)
+ d <- data.frame(x,y)
+ 
+ ## breaks, don't try this
+ ## optimx(fn=Lfn,par=c(15,6),method="Rvmmin")
+ 
+ suppressWarnings(m1 <- mle2(minuslogl=y~dpois(lambda=ymax/(1+x/xhalf)),
+      start=list(ymax=15,xhalf=6),data=d,
+      optimizer="optimx",
+            method=c("BFGS","Nelder-Mead","CG")))
+ 
+ ## FIXME!! fails (although not with an error, because
+ ##  errors are caught by profiling) due to npar now
+ ## being restricted to >1 in optimx 2012.05.24 ...
+ 
+ suppressWarnings(head(as.data.frame(profile(m1))))
+ detach("package:optimx")
+ }
Loading required package: optimx
> options(old_opt)
> 
> proc.time()
   user  system elapsed 
  5.852   0.188  13.617