-
Notifications
You must be signed in to change notification settings - Fork 1
/
DESCRIPTION
53 lines (53 loc) · 1.75 KB
/
DESCRIPTION
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
Package: marshal
Version: 0.0.1-9006
Title: Framework to Marshal Objects to be Used in Another R Process
Depends:
R (>= 3.2.0)
Suggests:
knitr,
DT,
jsonlite,
bigmemory,
bundle,
caret,
data.table,
DBI,
RSQLite,
digest,
h2o,
inline,
keras,
tensorflow,
magick,
ncdf4,
parsnip,
raster,
reticulate,
rJava,
rstan,
BH, RcppEigen,
sparklyr,
stats,
terra,
tools,
torch,
luz,
udpipe,
xgboost,
XML,
xml2
VignetteBuilder:
knitr
Authors@R:
person(given = "Henrik", family = "Bengtsson",
role = c("aut", "cre", "cph"),
email = "[email protected]")
Description: Some types of R objects can be used only in the R session they were created. If used as-is in another R process, such objects often result in an immediate error or in obscure and hard-to-troubleshoot outcomes. Because of this, they cannot be saved to file and re-used at a later time. They can also not be exported to a worker in parallel processing. These objects are sometimes referred to as non-exportable or non-serializable objects. One solution to this problem is to use "marshalling" to encode the R object into an exportable representation that then can be used to re-create a copy of that object in another R process. This package provides a framework for marshalling and unmarshalling R objects such that they can be transferred using functions such as serialize() and unserialize() of base R.
License: MIT + file LICENSE
Encoding: UTF-8
LazyLoad: TRUE
ByteCompile: TRUE
URL: https://marshal.futureverse.org, https://github.com/futureverse/marshal
BugReports: https://github.com/futureverse/marshal/issues
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1