Public bug reported:
Binary package hint: r-cran-tseries
## Distribution Function:
## His script uses the contributed tseries package from Adrian Tapletti:
garchTsFit = function(x, order)
{
require(tseries)
fit = garch(x, order)
llh = -(fit$n.likeli + length(x)*log(2*pi)/2)
ans = cbind(Estimate = fit$coef, "Std. Error" = fit$asy.se.coef,
"t value" = fit$coef/fit$asy.se.coef)
rownames(ans) = names(fit$coef)
round(ans, digits = 6)
}
###
dem2gbp <- scan("dem2gbp.csv")
fit3 = garchTsFit(dem2gbp, order = c(1, 1))
fit3
And I got an unbalanced left parantheses error for a format statement.
--
I got the package by apt-get source built and installed it locally as an
R package and it worked.
** Affects: tseries (Ubuntu)
Importance: Undecided
Status: New
--
garch() throws a Fortran error
https://bugs.launchpad.net/bugs/205510
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
--
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs