# While the usage of this function is pretty self-explanatory, let's plot all the graphs
# just for browsing.
for (i in seq(1, length(four_leaves_graphs))) {
graph <- four_leaves_graphs[[i]](c("A", "B", "C", "D"))
# This is how you include quotation marks in strings by the way:
title <- paste("four_leaves_graphs[[", i, "]](c(\"A\", \"B\", \"C\", \"D\"))", sep = "")
plot(graph, color = "tomato3", title = title)
}
Run the code above in your browser using DataLab