Displaying 1 result from an estimated 1 matches for "trialextract".
2008 Dec 08
3
Transforming a string to a variable's name? help me newbie...
...h is of the exact same name of the dataframe / variable of that
trial, which is:
t24v2msa8.gz
Can somebody tell me how can I change that string (obtained from
"paste()" above) to be a usable / manipulable variable name, so that I
can do something, such as:
(1)
tmptrial <- trialcompute(trialextract(
paste("t",tmptrialinfo[1,2],tmptrialinfo[1,16],".gz",sep="")
,tmptrialinfo[1,32],secs,sdm),secs,binsize)
instead of hardcoding:
(2)
tmptrial <- trialcompute(trialextract(t24v2msa8.gz,tmptrialinfo[1,32],secs,sdm),secs,binsize)
Currently, 1) doesn't work...
Tha...