-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprojr_use_data.Rd
76 lines (66 loc) · 2.81 KB
/
projr_use_data.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/misc.R
\name{projr_use_data}
\alias{projr_use_data}
\title{\code{projr} drop-in replacement for usethis::use_data}
\usage{
projr_use_data(
...,
internal = FALSE,
overwrite = FALSE,
compress = "bzip2",
version = 2,
ascii = FALSE,
safe = TRUE
)
}
\arguments{
\item{...}{Unquoted names of existing objects to save.}
\item{internal}{If \code{FALSE}, saves each object in its own \code{.rda}
file in the \verb{data/} directory. These data files bypass the usual
export mechanism and are available whenever the package is loaded
(or via \code{\link[=data]{data()}} if \code{LazyData} is not true).
If \code{TRUE}, stores all objects in a single \code{R/sysdata.rda} file.
Objects in this file follow the usual export rules. Note that this means
they will be exported if you are using the common \code{exportPattern()}
rule which exports all objects except for those that start with \code{.}.}
\item{overwrite}{By default, .use_data()\verb{will not overwrite existing files. If you really want to do so, set this to}TRUE`.}
\item{compress}{Choose the type of compression used by \code{\link[=save]{save()}}.
Should be one of "gzip", "bzip2", or "xz".}
\item{version}{The serialization format version to use. The default, 2, was
the default format from R 1.4.0 to 3.5.3. Version 3 became the default from
R 3.6.0 and can only be read by R versions 3.5.0 and higher.}
\item{ascii}{if \code{TRUE}, an ASCII representation of the data is
written. The default value of \code{ascii} is \code{FALSE} which
leads to a binary file being written. If \code{NA} and
\code{version >= 2}, a different ASCII representation is used which
writes double/complex numbers as binary fractions.}
\item{safe}{logical.
Whether to save data to a temporary directory
(in \verb{<cache>/"projr"/v<version>/data/})
or "data/".
Default is the temporary directory (TRUE).}
}
\description{
usethis::use_data always saves data to \verb{data/}, which
conflicts with the temporary directories used by .build_dev`
and makes it difficult to restore after failed output builds.
.use_data\verb{is a drop-in replacement for}usethis::use_data\verb{, which saves data to the temporary directory when }safe = TRUE`.
This makes it easier to restore the project after a failed output build.
The only other difference is that .use_data\verb{invisibly returns the path to the saved data file, whereas}usethis::use_data\code{returns}TRUE`.
}
\details{
Taken directly from the documentation for the original
\code{usethis} function, and adjusted slightly.
}
\examples{
\dontrun{
x <- 1:10
y <- 1:100
projr_use_data(x, y) # For external use
projr_use_data(x, y, internal = TRUE) # For internal use
}
}
\seealso{
The \href{https://r-pkgs.org/data.html}{data chapter} of \href{https://r-pkgs.org}{R Packages}.
}