Displaying 1 result from an estimated 1 matches for "name_infra_alg_inc".
2004 Dec 20
1
evaluate expression on several dataframe columns
Hi R-users,
I have a collection of dataframes and know how to build
a string that refers to it, in this example, name_infra_alg_inc.
Then, I have a character string yval, which the user can select
from a drop down list. It contains the column names of the
dataframes.
assign(paste(name_infra_alg_inc, "ci", sep="."),
ci(get(name_infra_alg_inc)[[yval]], confidence=0.95))
My problem is that I sometimes want...