Displaying 1 result from an estimated 1 matches for "logtax".
Did you mean:
logmax
2004 Apr 14
3
A bug report?
...whether these attachments will make it into the list. Here
is my bugreport.R program --
---------------------------------------------------------------------------
buoyancy <- function(year, taxbase, tax, description, plotname) {
cat("Simple full OLS regression with all data:\n")
logtax = log(tax)
logtaxbase = log(taxbase)
m = lm(logtax ~ logtaxbase)
summary.lm(m)
details = summary.lm(m)
}
A <- read.table(file="amodi-data.csv", sep=",", col.names=c("year",
"gdp.ag", "gdp.mining", "gdp.manuf", &...