An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20070619/4420068e/attachment.pl
names over names
2 messages · elyakhlifi mustapha, Jim Lemon
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