[R] names over names
Jim Lemon
jim at bitwrit.com.au
Wed Jun 20 13:53:55 CEST 2007
elyakhlifi mustapha wrote:
> Hello,
> I wonder if it's possible to put names above column names.
> Do you know if it's possible?
If you mean something like this:
Weekdays
Monday Tuesday Wednesday Thursday Friday
and you want it to be part of the data frame:
attr(mydf,"supername")<-"Weekdays"
This will not just appear when you print the data frame, you would have
to access the "supername" like this:
attr(mydf,"supername")
[1] "Weekdays"
However, I suspect that whatever you are trying to accomplish can be
done in a more straightforward way.
Jim
More information about the R-help
mailing list