#' @export
rm_duplicate <- function(d) {
I <-
{
!duplicated(d[, 1:4])
} %>%
which()
d_pos <- d[I, ] %>%
fix_alt()
d_pos[order(site), ]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.