This could work, but not with big matrix!

year <- c(1990,1995,2000,2005)
Prod <- c(2478,3192,NA,1594)

matrix <- data.frame(cbind(year,Prod))
for (i in 1:dim(matrix)[1])
        {
        if (is.na(matrix[i,2])) {matrix[i,2] <- 0}
        }

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to