plot - R: Graphing a table plan -
general goal i placing guests around tables according set of rules. goal, in post, have handy function display names of these guests around respective tables on r graphic. input data guests describes position of each guest @ each table. note number of guests per table varies. guests = list( table_1 = c("jack", "christelle", "frank", "john s.", "lucia"), table_2 = c("george", "amanda", "alice", "laura", "john h."), table_3 = c("jeanette", "elizabeth", "remi", "fabian", "urs", "emma"), table_5 = c("roger", "marry", "henrique", "claire", "julia"), table_6 = c("alphonse", "marie", "dani", "rachel") ) table_positions indicate each table should positioned on graph. assume here each axis goes 0 10, point c(5,5) @ c...