Statistical Analysis: an Introduction using R/R/Objects

Objects

table() is a more advanced version of tabulate(): it doesn't produce a vector, but a "table" object.
Input:
<pre>table(sim.1000)</pre>
Result:
> table(replicate(1000, max(table(sample(1:6, 5, TRUE)))))

  1   2   3   4   5 
 90 694 198  17   1 
You may get slightly different numbers, because of the random nature of the simulation. But over 1000 times, they should even out
Category:Book:Statistical Analysis: an Introduction using R#R/Objects%20
Category:Book:Statistical Analysis: an Introduction using R