Skip to content

Commit 8913b4a

Browse files
committed
prep for cran
1 parent e1c0d2c commit 8913b4a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

DESCRIPTION

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: loo
22
Type: Package
33
Title: Efficient Leave-One-Out Cross-Validation and WAIC for Bayesian Models
4-
Version: 0.1.1
5-
Date: 2015-07-15
4+
Version: 0.1.2
5+
Date: 2015-07-16
66
Authors@R: c(person("Aki", "Vehtari", email = "Aki.Vehtari@aalto.fi", role = c("aut")),
77
person("Andrew", "Gelman", email = "gelman@stat.columbia.edu", role = c("aut")),
88
person("Jonah", "Gabry", email = "jsg2201@columbia.edu", role = c("cre", "aut")),
@@ -20,6 +20,7 @@ License: GPL (>=3)
2020
LazyData: TRUE
2121
Depends: R (>= 3.1.2)
2222
Imports:
23+
graphics,
2324
matrixStats (>= 0.14.1),
2425
parallel,
2526
stats

NAMESPACE

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ export(nlist)
1212
export(psisloo)
1313
export(psislw)
1414
export(waic)
15+
importFrom(graphics,abline)
16+
importFrom(graphics,axis)
17+
importFrom(graphics,plot)
18+
importFrom(graphics,points)
1519
importFrom(matrixStats,colLogSumExps)
1620
importFrom(matrixStats,colVars)
1721
importFrom(matrixStats,logSumExp)

R/helpers.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ lw_normalize <- function(y) {
9191

9292

9393
# print helpers -----------------------------------------------------------
94+
#' @importFrom graphics abline axis plot points
9495
.fr <- function(x, digits) format(round(x, digits), nsmall = digits)
9596
.warn <- function(..., call. = FALSE) warning(..., call. = call.)
9697
k_warnings <- function(k, digits = 1) {

0 commit comments

Comments
 (0)