The rowname tag has no wiki summary.
4
votes
4answers
6k views
Row names & column names in R
Do the following function pairs generate exactly the same results?
Pair 1) names() & colnames()
Pair 2) rownames() & row.names()
2
votes
3answers
124 views
Checking whether a row name exists in a data frame?
I would like to address the rows of a data frame by a string name, and the table will be built sequentially. I want to do something like
> mytab <- ...
1
vote
2answers
1k views
Changing dimnames of matrices and data frames in R
Let's say I have created the following matrix:
> x <- matrix(1:20000,nrow=100)
> x[1:10,1:10]
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
[1,] 1 101 201 301 401 501 ...
0
votes
1answer
253 views
Getting the first letter from each row of a certain column in a data.frame in R
I experience the following problem. One is given a data frame with 5 categories-a,b,c,d,e for each name(names are 54).
I give you a small extract from the whole data frame in R just to give you a ...
0
votes
1answer
301 views
R vegdist(jaccard): how to include row name for clustering? [closed]
Possible Duplicate:
R cluster with Tanimoto/Jaccard
Input
genename treatment1 treatment2 treatment3
aaa 1 0 0
bbb 0 1 1
ccc 1 ...