ArrangeColumn <- function(Name1, Name2, DT){
AllNames <- names(DT)
AllNames <- AllNames[AllNames != Name2]
Position1 <- which(AllNames == Name1)
if(Position1 != length(AllNames)){
AllNames <- c(AllNames[1:Position1], Name2,
AllNames[(Position1 + 1):length(AllNames)])
setcolorder(DT, AllNames)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.