This file is indexed.

/usr/lib/R/site-library/modeltools/NEWS is in r-cran-modeltools 0.2-21-2.

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
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
CHANGES IN `modeltools' VERSION 0.2-21

  o  export ParseFormula

CHANGES IN `modeltools' VERSION 0.2-20

  o  fix NAMESPACE issues

CHANGES IN `modeltools' VERSION 0.2-19

  o  added model.matrix.survReg

CHANGES IN `modeltools' VERSION 0.2-17

  o COPYING -> LICENSE

CHANGES IN `modeltools' VERSION 0.2-16

  o inputs make be NULL (in complete.cases.*)


CHANGES IN `modeltools' VERSION 0.2-16

  o new generic `relabel'


CHANGES IN `modeltools' VERSION 0.2-15

  o `Predict' didn't pass ... to `predict'

  o new generic and method `empty'

  o the `show' method now prints the number of columns if a data
    object has no colnames.

  o renamed `cluster' to `clusters' to avoid conflict with `cluster' 
    from package survival 


CHANGES IN `modeltools' VERSION 0.2-14

  o `object' in `Predict(object)' might be an S4 object and $ can't be used.

CHANGES IN `modeltools' VERSION 0.2-13

  o new generic Lapply


CHANGES IN `modeltools' VERSION 0.2-12

  o fix Rd problems

CHANGES IN `modeltools' VERSION 0.2-11

  o added argument newdata to generic cluster()

  o LazyLoad: yes

CHANGES IN `modeltools' VERSION 0.2-10

  o Added several generic functions: ICL, KLdiv, cluster, getModel, parameters,
    posterior, prior, refit, info, infoCheck

  o fix problems with evaluating subset arguments

CHANGES IN `modeltools' VERSION 0.2-9

  o the following code didn't work

    tmp <- function(formula, data = list(), subset = NULL) 
        ModelEnvFormula(formula, data, subset = subset, frame = parent.frame())
    foo <- function(x, y, ...) tmp(y ~ x, ...)
    a <- 1:10     
    b <- 1:10     
    stopifnot(identical(foo(a, b, subset = 1:5)@get("response")[[1]],1:5)) 
    ### was: couldn't find `y' when `frame' wasn't specified

    x <- 1
    y <- 2   
    stopifnot(identical(foo(a, b, subset = 1:5)@get("response")[[1]],1:5))   
    ### was: found `x' and `y' in .GlobalEnv when `frame' wasn't specified


CHANGES IN `modeltools' VERSION 0.2-8

  o ModelEnvFormula(y ~ 1) works now

  o new function MEapply (only roughly documented, more to come)

CHANGES IN `modeltools' VERSION 0.2-7

  o add methods and stats to Depends:

CHANGES IN `modeltools' VERSION 0.2-6

  o fix codetools problems

CHANGES IN `modeltools' VERSION 0.2-5

  o import(stats)

CHANGES IN `modeltools' VERSION 0.2-4

  o add survReg objects as an interface to survival::survreg

CHANGES IN `modeltools' VERSION 0.2-3

  o checkData does no longer insist that columns of a new data frame
    are in the same order as in the original data frame.

  o fxied a bug in the show() method for ModelEnv objects

  o new ModelEnv creator function ModelEnvMatrix

  o `linearModel@fit' now returns an object of class `linearModel'
  
  o `glinearModel' object added
  
  o S3 methods for (g)linearModel objects added (fitted, model.matrix, ...)
  

CHANGES IN `modeltools' VERSION 0.2-2


  o remove special code for `Surv' objects in ParseFormula


CHANGES IN `modeltools' VERSION 0.2-0


  o `Predict' checks for `StatModel' objects being available

  o `linearModel@fit' now returns an object of class `statmodel_lm'
    which inherits from `lm' and has its own `predict' method (in S3)

  o prepare for CRAN submission


CHANGES IN `modeltools' VERSION 0.1-2


  o `set' and `get' functions have an additional `envir' argument. This is
    now used by `clone', for example.

  o lmfit now returns a `lm' object with element `predict_response' for
    computing predictions.