search for: taxbase

Displaying 1 result from an estimated 1 matches for "taxbase".

Did you mean: maxbase
2004 Apr 14
3
A bug report?
...about R that I don't know. :-) I have attached the data file and the program file but don't know 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...