Rのチャットルームの1つで、これについての議論を見たと思いggplot2
ます。提供するかどうか/どのヒントを提供するかを決定するために、乱数ジェネレーターを呼び出します。
特に、これはggplot2:::.onAttach
:
function (...)
{
if (!interactive() || stats::runif(1) > 0.1)
return()
tips <- c("Need help? Try the ggplot2 mailing list: http://groups.google.com/group/ggplot2.",
paste("Find out what's changed in ggplot2 with\n", "news(Version == \"",
utils::packageVersion("ggplot2"), "\", package = \"ggplot2\")",
sep = ""), "Use suppressPackageStartupMessages to eliminate package startup messages.")
tip <- sample(tips, 1)
packageStartupMessage(tip)
}
ランダムに生成されたヒントの1つが、ヒントをオフにする方法を教えてくれるのはちょっと面白いです...