Displaying 1 result from an estimated 1 matches for "ttest1".
Did you mean:
test1
2005 Jul 27
1
get the content of object in ls()?
...quot; "b"
[3] "files.num" "fll92_1a_gpr"
[5] "fll92_1a_gpr_norm" "fll92_1a.gpr.norm.scale"
[7] "fname" "fullnames"
[9] "gal" "galfile"
[11] "i" "readGalfile2"
[13] "sample1" "ttest1"
> grep("_gpr$",ls())
[1] 4
> ls()[4]
[1] "fll92_1a_gpr"
> class(ls()[4])
[1] "character"
> class(fll92_1a_gpr)
[1] "marrayRaw"
attr(,"package")
[1] "marray"
I use the regular expression to get the name of the object I wa...