By ganpati | Uncategorized
Here are some nice posts visualizing data from real life cases:
By ganpati | Uncategorized
unique function in R
What it does?
It returns the unique values in a vector
Syntax:
unique (vector)
Example:
x<- c(1,1,1,2,2,3,4,4,5)
unique (x)
[1] 1 2 3 4 5