checkDuplicates_vect <-
function(vect){
if(sum(duplicated(vect))>=1){
print("Some duplicates are found:")
table(vect)
}else{return("Everything in this vector is unique")}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.