I am writing a function and am having some problems. My function doesn't create the new variable, and after running it there are no errors and no change as if I never ran it. The code before the function works just fine and if I pass the arguments through the code directly (bypassing the function aspect of the code), it runs flawlessly.
Is there anything you think I'm missing? I have been looking at this for two days and have run out of ideas to try. Any suggestions would be greatly appreciated!
path <- "C:/Documents/Data"
readFile <- paste(path,"/opps.csv",sep="")
oppsQty <- read.csv(file=readFile,sep=",")
oppsQty$Line.Created.date <- as.Date(as.character(oppsQty$Line.Created),
"%m/%d/%Y")
opQty002.0084.01 <- oppsQty[oppsQty$Part=="002-0084-01",]
productNumberData <- function(nameNum,prodNum){
# CREATING YEAR VARIABLE #
year2009 <- ifelse((nameNum$Line.Created.date <=
as.Date("12/30/2009","%m/%d/%Y")),"2009","0")
year2010 <- ifelse((nameNum$Line.Created.date >
as.Date("12/30/2009","%m/%d/%Y")&
nameNum$Line.Created.date <=
as.Date("12/30/2010","%m/%d/%Y")),"2010",year2009)
year2011 <- ifelse((nameNum$Line.Created.date >
as.Date("12/30/2010","%m/%d/%Y")&
nameNum$Line.Created.date <=
as.Date("12/30/2011","%m/%d/%Y")),"2011",year2010)
nameNum$line.YEAR <- ifelse((nameNum$Line.Created.date >
as.Date("12/30/2011","%m/%d/%Y")&
nameNum$Line.Created.date <=
as.Date("12/30/2012","%m/%d/%Y")),"2012",year2011)
}
productNumberData(opQty002.0084.01,"002-0084-01")
#opQty002.0084.01$line.YEAR does not exist