#' Liste
#'
#' @param v a vector with many strings of vectors Ex : c("(0, 1)", "(1, 1)")
#'
#' @return a list of vectors
#' @export
#'
#' @examples
#' liste(c("(0, 1)", "(1, 1)"))
liste <- function(v){
v2 <- list()
for (i in 1:length(v)){
v2 <- rlist::list.append(v2, charactervector_as_vector(v[i]))
}
return(v2)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.