[R] getting the unique values and counts from a vector

Wladimir Eremeev wl at eimb.ru
Fri May 20 18:01:53 CEST 2005


Dear Ravi,

try
> hist(x,plot=FALSE,breask=unique(x))$counts
[1] 5 3 0 0 0 2

Sorry, there is a typo above. However, it works because of it.

Correct is
> hist(x,plot=FALSE)$counts
[1] 5 3 0 0 0 2

another variant
> hist(x,plot=FALSE,breaks=c(unique(x)-1,max(unique(x))))$counts
[1] 5 3 2


--
Best regards
Wladimir Eremeev                                     mailto:wl at eimb.ru

==========================================================================
Research Scientist, PhD                           Leninsky Prospect 33,
Space Monitoring & Ecoinformation Systems Sector, Moscow, Russia, 119071,
Institute of Ecology,                             Phone: (095) 135-9972;
Russian Academy of Sciences                       Fax: (095) 135-9972




More information about the R-help mailing list