Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in R Programming by (12.9k points)
edited by

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 have R count the number of times a value x appears in the vector?

1 Answer

0 votes
by
edited by

You can use the table() function to print the frequency of each element present in a vector.

In your case:

>count <- table(numbers)

>count

Output:

numbers

4   5  23  34  43  54  56  65  67 324 435 453 456 567 657

2   1   2   2   1   1   2   1   2   1   3   1   1   1   1 

For a particular element, use the following code:

> count[names(count)==56]

56 

 2

Browse Categories

...