我想我在其中一個R聊天室看到了一些討論: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)
}
這有點可笑的是隨機生成的祕訣之一告訴你如何關閉提示...
這是不是改變種子價值 - 這是關於獲得一個隨機數(在你之前)。 – 2013-03-07 02:15:29
請注意,如果您測試了兩個結果的可重複性,那麼使用隨機種子'ggplot2'正在做某件事(可重複)會是一個強烈的暗示。實驗總是很好:-) – 2013-03-07 02:44:22