R/as-yml.r
as_ld_yml.Rd
Create an object of type yaml::yml from a list of computational components. The function recursively descends into the list and when an element type is not a list the class information substituted for the object.
as_ld_yml(x)
x | a named list of computational components. |
---|
if (require("ggplot2")) { cc_list <- list( Linear = ggplot(anscombe, aes(x = x1, y = y1)) + geom_point(), `Non Linear` = ggplot(anscombe, aes(x = x2, y = y2)) + geom_point(), `Outlier Vertical`= ggplot(anscombe, aes(x = x3, y = y3)) + geom_point(), `Outlier Horizontal` = ggplot(anscombe, aes(x = x4, y = y4)) + geom_point()) as_ld_yml(cc_list) }#>#> [1] "Linear:\n- gg:ggplot\nNon Linear:\n- gg:ggplot\nOutlier Vertical:\n- gg:ggplot\nOutlier Horizontal:\n- gg:ggplot\n"