/usr/lib/R/site-library/MatrixModels/NAMESPACE is in r-cran-matrixmodels 0.4-1-1.1.
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 | ##useDynLib(MatrixModels, .registration=TRUE)
## Import non-base functions we need explicitly,
## notably for which we define methods
## -- prefering importMethodsFrom(., ...) where applicable
## importFrom("graphics", image)
## importFrom("utils", head, tail)
##
importFrom("stats" ## potentially all these (we import into 'lme4a'):
# , anova
, coef, coefficients # confint, cov2cor, deviance,
, fitted, fitted.values
, formula # predict, profile
, model.extract, model.matrix, model.offset, model.response, model.weights
, residuals, resid # 'resid' needed too, unfortunately..
# , simulate, terms
, update
)
## according to codetoolsBioC :: writeNamespaceImports("MatrixModels"):
importClassesFrom("methods", ANY, call, character, environment, envRefClass,
integer, list, matrix, numeric, oldClass)
importMethodsFrom("methods", show)
importFrom("methods"
, callGeneric, as, is, extends, new
, getClass, getClassDef, validObject
, setClass, setClassUnion, setOldClass, setRefClass
, setGeneric, setMethod
, setValidity, slot, "slot<-", slotNames
, signature, representation, prototype)
## Those our methods and functions use:
importMethodsFrom("Matrix", as.matrix, as.vector, coerce,
## Group Methods
"Arith", "Compare", "Logic", "Math", "Math2", "Ops", "Summary",
t, "%*%", crossprod, tcrossprod,
Cholesky, chol, chol2inv,
solve,
summary, print,
update # notably the "CHMfactor" one
)
importClassesFrom("Matrix",
CHMfactor, CHMsimpl, CHMsuper, dCHMsimpl, dCHMsuper,
Cholesky, CholeskyFactorization,
compMatrix, corMatrix,
dgCMatrix, dgeMatrix, dMatrix,
dsparseMatrix, sparseMatrix, CsparseMatrix,
ddenseMatrix, denseMatrix,
generalMatrix, Matrix)
importFrom("Matrix",
.solve.dgC.chol, .solve.dgC.qr,
Diagonal, isLDL, sparse.model.matrix)
## Generics and functions defined in this package -------------------------
export(
"glm4",
#TODO "lm.fit.sparse",# <- "somewhat experimental"
"mkRespMod",
"model.Matrix"
, "solveCoef"
, "reweightPred"
, "updateMu"
, "updateWts"
)
exportClasses(
"modelMatrix",
"sparseModelMatrix",
"denseModelMatrix",
"dsparseModelMatrix",
"ddenseModelMatrix",
## --- linear predictor modules, containing a model matrix
"predModule",
"dPredModule",# dense &
"sPredModule",# sparse (for now)
## --- response modules, containing a response vector, etc.
"respModule", # base class and also linear model
"glmRespMod", # generalized linear models
"nlsRespMod", # nonlinear regression response
"nglmRespMod", # generalized nonlinear
"glpModel", "Model"
)
exportMethods(## for both own and "other" generics:
## re-export S4 methods, for "stats"-S3-generics:
"coef", "coefficients" ## , "cov2cor"
,"fitted", "fitted.values", "formula"
,"residuals", "resid"
,"print"# print(x, ...) when show(x) is not sufficient
,"show"
## not yet ,"summary"
)
|