knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(ttfriends)
df <- data.frame(x= c("A","A","B","B","B","C"),y=c("a","b","a","a","b","a"),z=1:6) df
table_bind_group(object = df,id = "x",col = "y")
table_bind_group(object = df,id = "x",col = "y",keep = TRUE)
table_bind_group(object = df,id = "x",col = "y",unique = FALSE)
table_bind_group(object = df,id = "x",col = "y",count = TRUE)
df2 <- data.frame(x=c("A","B"),y=c("123","4567"),z=c("C","D")) df2
table_split_group(object = df2, col="y")
df3 <- data.frame(x=c("A","B"),y=c("apple123","banana4567"),z=c("C","D")) df3
table_split_group(object = df3, col="y", header=c("apple","banana"))
df4 <- data.frame(x=c("A","B"),y=c("OTU1;k=1;p=2;c=3","OTU2;k=1;p=2;c=4"),z=c("C","D")) df4
table_split_group(object = df4, col="y", header="OTU.;", sep=";")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.