Assign <- function(x){
x %>%
mutate(Cell_Cycle = ifelse(x$Cell_Act_Cl == "Dividing", "LM",
(ifelse(x$DNA_IntI_Norm <= 1300, "G0/G1",
ifelse(x$DNA_IntI_Norm > 1300 & x$DNA_IntI_Norm <= 1600, "S","G2/M")))))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.