Skip to content
Back to formatted view

Raw Message

Message-ID: <b68812e705033022186ed53e0e@mail.gmail.com>
Date: 2005-03-31T06:18:43Z
From: Terry Mu
Subject: Can I extract result row of table()?

> x <- c(5, 5, 8, 8, 8, 27)
> table(x)
x
 5  8 27 
 2  3  1 

I want a way to use only "2, 3, 1", nomatter table or what other function used.
Thanks.