I am trying to figure out how to increase precision of an output of a function. I need to have output of acf
function with at least 5 digits accuracy, while it gives me 3.
v = c(1.1,3.2,2.1,4.5)
acfv = acf(v)
acfv
The only precision-adjusting function I know is options(digits=...)
, which works only for explicit calculations in global environment. Can anybody help me?