|
1 | | -useDynLib(RcppEigen) |
| 1 | +useDynLib("RcppEigen", .registration=TRUE) |
2 | 2 |
|
3 | 3 | importClassesFrom("Matrix", "dgCMatrix", "dgeMatrix", "dsCMatrix", "dtCMatrix") |
4 | | -importFrom(Rcpp, "evalCpp") |
5 | | -importFrom(utils, "packageDescription", "package.skeleton") |
6 | | -importFrom(stats, "model.frame", "model.matrix", "model.response", "fitted", "coef", "printCoefmat", "pt") |
7 | | -#exportPattern("^[[:alpha:]]+") |
8 | | -export(fastLm, |
9 | | - fastLmPure, |
10 | | - RcppEigen.package.skeleton |
| 4 | +importFrom("Rcpp", "evalCpp") |
| 5 | +importFrom("utils", "packageDescription", "package.skeleton") |
| 6 | +importFrom("stats", "model.frame", "model.matrix", "model.response", "fitted", "coef", "printCoefmat", "pt") |
| 7 | +export("fastLm", |
| 8 | + "fastLmPure", |
| 9 | + "RcppEigen.package.skeleton" |
11 | 10 | ) |
12 | 11 |
|
13 | | -S3method(fastLm, default) |
14 | | -S3method(fastLm, formula) |
15 | | -S3method(predict, fastLm) |
16 | | -S3method(print, fastLm) |
17 | | -S3method(summary, fastLm) |
18 | | -S3method(print, summary.fastLm) |
| 12 | +S3method("fastLm", "default") |
| 13 | +S3method("fastLm", "formula") |
| 14 | +S3method("predict", "fastLm") |
| 15 | +S3method("print", "fastLm") |
| 16 | +S3method("summary", "fastLm") |
| 17 | +S3method("print", "summary.fastLm") |
0 commit comments