Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

R function unique() #53

Open
jmaccherone opened this issue May 15, 2013 · 0 comments
Open

R function unique() #53

jmaccherone opened this issue May 15, 2013 · 0 comments

Comments

@jmaccherone
Copy link
Collaborator

Takes a vector as a parameter and returns a vector that is a list of all unique values.

myData <- c(1, 2, 1, 2, 3, 3, 3, 4, 5, 4, 5)
UniqueValues <- unique(myData)
UniqueValues
[1] 1 2 3 4 5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant