search for: myfunction1v

Displaying 2 results from an estimated 2 matches for "myfunction1v".

Did you mean: myfunction1
2017 Jun 06
3
Force argument to have quotes
...s no problem myFunction2Vals <- subset(scoreConfig, Function == 'myFunction2') myOptions <- with(myFunction2Vals, paste(Argument, Value, sep = '=', collapse = ',')) eval(parse(text = paste( "myFunction2(", myOptions, ")" ))) ### myFunction1 fails myFunction1Vals <- subset(scoreConfig, Function == 'myFunction1') myOptions <- with(myFunction1Vals, paste(Argument, Value, sep = '=', collapse = ',')) eval(parse(text = paste( "myFunction1(", myOptions, ")" ))) ### What I want is simply myFunction1(arg1 = 1, a...
2017 Jun 06
0
Force argument to have quotes
...s <- subset(scoreConfig, Function == 'myFunction2') > myOptions <- with(myFunction2Vals, paste(Argument, Value, sep = '=', collapse = ',')) > eval(parse(text = paste( "myFunction2(", myOptions, ")" ))) > > > ### myFunction1 fails > myFunction1Vals <- subset(scoreConfig, Function == 'myFunction1') > myOptions <- with(myFunction1Vals, paste(Argument, Value, sep = '=', collapse = ',')) > eval(parse(text = paste( "myFunction1(", myOptions, ")" ))) > > ### What I want is simply >...