Last active
March 2, 2017 16:06
-
-
Save expersso/f56e2e112bb86f41615007763f9cf3d2 to your computer and use it in GitHub Desktop.
Generate Pascal's triangle using purrr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse) | |
| library(stringr) | |
| pascal_triangle <- function(n) { | |
| df <- data_frame(N = 0:n, k = map(N, seq, from = 0)) %>% | |
| unnest() %>% | |
| mutate(c = choose(N, k)) %>% | |
| group_by(N) %>% | |
| summarise(c = paste(c, collapse = " ")) | |
| df$c %>% | |
| str_pad(5 * (n + 1), "both") %>% | |
| paste(collapse = "\n") %>% | |
| cat() | |
| } | |
| pascal_triangle(15) |
expersso
commented
Mar 2, 2017
Author

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment