Displaying 1 result from an estimated 1 matches for "logfunction".
Did you mean:
longfunction
2013 Mar 27
1
Averaging Out many rows from a column AND funtion to string
...it is 1000 row, 995, or 1123)
I think what I need here is a way of selecting multiple rows and averaging per column (notice that the column number should stay the same)
b. I would like to be able to convert strings that are function names to real function calls. For example I have something like
LogFunction<- function(){}
FunctionIndex<- rbind (c(1,"LogFunction"),
c(2,"TakeFunction")
)
print(sprintf('Using the function %s',FunctionIndex[1,1]))
# call the FunctionIndex[1,1] somehow
I would like to thank you in advance for your help
Reg...