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
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ To get progress updates, we can call it as:
64
64
The default is to present progress via `utils::txtProgressBar()`, which is available on all R installations. To change the default, to, say, `progress_bar()` by the **[progress]** package, set the following R option(\*):
65
65
66
66
```r
67
-
options(progressr.handlers=progress_handler)
67
+
handlers("progress")
68
68
```
69
69
This progress handler will present itself as:
70
70
```r
@@ -78,7 +78,7 @@ This progress handler will present itself as:
78
78
Note all progress updates have to be presented visually. This can equally well be done auditory. For example, using:
79
79
80
80
```r
81
-
options(progressr.handlers=beepr_handler)
81
+
handlers("beepr")
82
82
```
83
83
will present itself as sounds played at the beginning, while progressing, and at the end (using different **[beepr]** sounds). There will be _no_ output written to the terminal;
84
84
```r
@@ -93,7 +93,7 @@ will present itself as sounds played at the beginning, while progressing, and at
93
93
94
94
It is possible to have multiple progress handlers presenting progress updates at the same time. For example, to get both visual and auditory updates, use:
0 commit comments