R Coding Conventions http://www1.maths.lth.se/help/R/RCC/
Last edited:
> a <- rnorm(20)
> dput(a)
c(0.199682671697792, 0.221405916576581, -0.540108061480237, -1.03454796714979,
0.855130785017209, -0.728297453334319, -0.124853295148411, 0.573593976345655,
0.587471048161332, -0.399657000174106, 0.0790025338361471, -1.15666859744187,
1.60341026811636, -1.77976433678292, -0.0700142083160872, -0.0661166488757114,
0.291312989757702, 1.07447980788710, -2.36116764231456, -0.188884077156038
)
>
# use it like this
a <- rnorm(20)
page(a)
# or with a function
page(optim)