-
Notifications
You must be signed in to change notification settings - Fork 1
/
DESCRIPTION
27 lines (27 loc) · 1.07 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
Package: peakRAM
Title: Monitor the Total and Peak RAM Used by an Expression or Function
Version: 1.0.3
URL: http://github.com/tpq/peakRAM
BugReports: http://github.com/tpq/peakRAM/issues
Authors@R: c(
person("Thomas", "Quinn", email = "[email protected]", role = c("aut", "cre"))
)
Description: When working with big data sets, RAM conservation is critically
important. However, it is not always enough to just monitor the
size of the objects created. So-called "copy-on-modify" behavior,
characteristic of R, means that some expressions or functions may
require an unexpectedly large amount of RAM overhead. For example,
replacing a single value in a matrix duplicates that matrix in the
back-end, making this task require twice as much RAM as that used
by the matrix itself. This package makes it easy to monitor the total
and peak RAM used so that developers can quickly identify and
eliminate RAM hungry code.
License: GPL-2
LazyData: true
VignetteBuilder: knitr
RoxygenNote: 7.1.1
Depends:
R (>= 3.2.2)
Suggests:
knitr,
rmarkdown