R 有効桁数の変更

デフォルトは7桁。
options()関数で、変更できる。

> 1/7
[1] 0.1428571
> options(digits=10)
> 1/7
[1] 0.1428571429