Counting the number of elements with the values of x in a vector

后端 未结 19 1369
闹比i
闹比i 2020-11-22 02:44

I have a vector of numbers:

numbers <- c(4,23,4,23,5,43,54,56,657,67,67,435,
         453,435,324,34,456,56,567,65,34,435)

How can I hav

19条回答
  •  遥遥无期
    2020-11-22 03:26

    There are different ways of counting a specific elements

    library(plyr)
    numbers =c(4,23,4,23,5,43,54,56,657,67,67,435,453,435,7,65,34,435)
    
    print(length(which(numbers==435)))
    
    #Sum counts number of TRUE's in a vector 
    print(sum(numbers==435))
    print(sum(c(TRUE, FALSE, TRUE)))
    
    #count is present in plyr library 
    #o/p of count is a DataFrame, freq is 1 of the columns of data frame
    print(count(numbers[numbers==435]))
    print(count(numbers[numbers==435])[['freq']])
    

提交回复
热议问题