[R] unique columns in a matrix and number of each

jim holtman jholtman at gmail.com
Sun Nov 23 06:19:48 CET 2008


One way is to 'paste' together the values in a column and then use
'table' to count them.

'duplicated' can probably do the same thing with the MARGIN option to
find the duplicated one.  You still them have to find the original
ones.

On Sat, Nov 22, 2008 at 3:42 PM, Salas, Andria Kay <aks2515 at uncw.edu> wrote:
> I need help determining the unique columns of a matrix and the numbers of each unique column.  For example, let's say I have a matrix with 6 columns, 2 of these are filled with the value of 1 and the other 4 are filled with the value of 0.  I would then like to have a command that tells me what the unique columns are (so columns with 1s and columns with 0s) and the number of each type of column (so 2 columns of 1s and 4 columns of 0s) that occur in the matrix.
>
> Thank you for any help anyone can provide!!  I have been very impressed with the help that I have received so far!!  Thank you!
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



-- 
Jim Holtman
Cincinnati, OH
+1 513 646 9390

What is the problem that you are trying to solve?



More information about the R-help mailing list