I am trying to concatenate my function's arguments inside the body of my function for further evaluation within the bode. I went through many code improvements trying to solve the issue but couldn't.
Example: When providing a function call like fun(x,y), I want to be able to paste the characters I entered for x, to $ and the characters I entered for y to call a field within a data set for analysis. So if I provided the characters car for argument x, and toyota for argument y, I would get car$toyota variable name to use within the body of the function.
I tried:
gtData <- function(data,field,k)
d <- diff(data$field) ## I also tried sum(data$field) to eliminate issues with diff()
but d evaluated to 0 ## I know it's not because when I run the code diff(car$toyota) I get the right answer. I don't think its doing what I want it to do. I also tried to paste the arguments within the body like this:
gtData(data,field,k)
a <- paste(data,"$",field)
It complained toyota doesn't exist because toyota is not a data set but a field in a data set.
I tried many other variation, it seems paste() can't do what I want it to do here.
What I am trying to get is the string car$toyota so I could pass it further down the body as a variable for further evaluation.