# 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(eight_leaves_trees))) {
graph <- eight_leaves_trees[[i]](c("A", "B", "C", "D", "E", "F", "G", "H"))
# This is how you include quotation marks in strings by the way:
title <- paste("eight_leaves_trees[[", i,
"]](c(\"A\", \"B\", \"C\", \"D\", \"E\", \"F\", \"G\", \"H\"))", sep = "")
plot(graph, color = "brown", title = title)
}
Run the code above in your browser using DataLab