Displaying 1 result from an estimated 1 matches for "organizig".
Did you mean:
  organizing
  
2012 Aug 20
5
Some kind of inverse of "names"
I wonder if there exists some kind of inverse of the "names" primitive in
R. Let me explain what do I mean:
If I create a list:
  -> li <- list(a=1, b=2, c=3, d=4)
then I can have:
  -> names(li)
  [1] "a" "b" "c" "d"
which is, I guess, some kind of vector, since
  -> typeof(names(li))
  [1] "character"
however, I haven't