Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有哪些工具可用于随机打乱 R 中的值网格?
我一个都不知道。这些值不能改变,我只需要重新洗牌。实际上,网格可以表示为线性数据集,在这种情况下,问题就变成了:如何随机重新排列值向量?
sample(x)给出 的随机排列x。
sample(x)
x
例如:
> sample(c(1,3,5,7,9)) [1] 5 7 1 3 9