Do the following function pairs generate exactly the same results?
Pair 1) names() & colnames()
Pair 2) rownames() & row.names()
|
Do the following function pairs generate exactly the same results? Pair 1) Pair 2)
| ||||
|
feedback
|
|
As Oscar Wilde said
R is more of an evolved rather than designed language, so these things happen.
| |||||||||||||
feedback
|
|
Just to expand a little on Dirk's example: It helps to think of a data frame as a list with equal length vectors. That's probably why The other useful function is Regarding
| |||
|
feedback
|
|
I think that using Using
| |||
|
feedback
|
|
And another expansion:
If you want to assign new column names you can do following on
If you, however run previous command on
Since matrix can be regarded as two-dimensional vector, you'll assign names only to first five values (you don't want to do that, do you?). In this case, you should stick with So there... | |||
|
feedback
|