SyntaxFix
Write A Post
Hire A Developer
Questions
Try using the duplicated function in combination with the negation operator "!".
Example:
wdups <- rep(1:5,5) wodups <- wdups[which(!duplicated(wdups))]
Hope that helps.