This maze is a uniform spanning tree generated by Wilson’s algorithm. To illustrate this point, the maze is transformed into a Reingold–Tilford tree layout.
Forked from Mike Bostock's Gist.
| # Examples | |
| library(dplyr) | |
| source("s_dplyr.R"); | |
| # Original usage of dplyr | |
| mtcars %>% | |
| filter(gear == 3,cyl == 8) %>% | |
| select(mpg, cyl, hp:vs) | |
| # Select user specified cols. | 
This maze is a uniform spanning tree generated by Wilson’s algorithm. To illustrate this point, the maze is transformed into a Reingold–Tilford tree layout.
Forked from Mike Bostock's Gist.