Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
Show startup message only 1 in 10 times. Closes #30.
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Oct 10, 2014
1 parent 9a54008 commit 74f1345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/zzz.r
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.onAttach <- function(...) {
if (!interactive()) return()
if (!interactive() || stats::runif(1) > 0.1) return()
packageStartupMessage("The ggvis API is currently rapidly evolving. ",
"We strongly recommend that you do not rely on this for production, but ",
"feel free to explore. If you encounter a clear bug, please file a ",
Expand Down

0 comments on commit 74f1345

Please sign in to comment.