ar.burg(x, aic=T, order.max=<<see below>>)
The estimation is performed using the sample mean of each univariate series as the estimate of the mean. Remember that the coefficients in ar are for the series with the mean(s) removed.
a <- ar.burg(log(lynx)) tsplot(a$aic) # Fit an AR(11) to this time series llynx.ar.fit <- ar.burg(log(lynx), aic=F, order=11)