You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every time you use `checkpoint()` the function places a small marker in the snapshot archive with the access date. In this way you can track when was the last time you actually used the snapshot archive.
99
93
100
-
```{r access}
94
+
```r
101
95
# Returns the date the snapshot was last accessed.
@@ -110,27 +107,25 @@ Since the date of last access is tracked, you can use this to manage your checkp
110
107
111
108
The function `checkpointRemove()` will delete archives from disk. You can use this function in multiple ways. For example, specify a specific archive to remove:
112
109
113
-
```{r remove-1, eval=FALSE}
114
-
# Remove singe checkpoint archive from disk.
115
-
checkpointRemove("2015-04-26")
110
+
```r
111
+
# Remove single checkpoint archive from disk.
112
+
checkpointRemove("2017-04-01")
116
113
```
117
114
118
115
You can also remove a range of snapshot archives older (or more recent) than a snapshot date
@@ -140,42 +135,49 @@ One of the side effects of `checkpoint()` is to create a log file that contains
140
135
141
136
This file is stored in the checkpoint root folder, and is a csv file with column names, so you can read this with your favourite R function or other tools.
0 commit comments