class: center, middle, inverse, title-slide # GitHub Actions ## Exemplo com live coding ### Julio Trecenti ### International Seminar on Statistics with R ### Junho de 2021 ---
<style type="text/css"> a:hover { opacity: 0.5; } </style> # Apresentação <style type="text/css"> td { vertical-align: center; } </style> <small>Julio Trecenti: **faxineiro de dados**</small> <table style="border:none;border-color:none;"> <tr> <td><img style="border:none;height:60px" src='https://jtrecenti.github.io/slides/docs/ime2021/img/ime.png' /></td> <td>Doutorando em Estatística no IME-USP</td> </tr> <tr> <td><img style="border:none;height:50px" src='https://jtrecenti.github.io/slides/docs/ime2021/img/abj.png' /></td> <td>Secretário-geral da Associação Brasileira de Jurimetria</td> </tr> <tr> <td><img style="border:none;height:50px" src='https://jtrecenti.github.io/slides/docs/ime2021/img/terranova.png' /></td> <td>Sócio da Terranova Consultoria</td> </tr> <tr> <td><img style="border:none;height:50px" src='https://jtrecenti.github.io/slides/docs/ime2021/img/curso-r.png' /></td> <td>Sócio da Curso-R</td> </tr> </table> --- # Hoje - Github Actions live coding - Exemplo com o [repositório do SeR](https://github.com/eventoseroficial/Data_and_Code) <img src="https://media.giphy.com/media/LmNwrBhejkK9EFP504/giphy.gif" style="display: block; margin: auto;" /> --- # Gráfico .panelset[ .panel[.panel-name[Pacotes] ```r library(magrittr) library(gh) library(purrr) library(tibble) library(ggplot2) library(lubridate) ``` ] .panel[.panel-name[Código] ```r gh("/repos/eventoseroficial/Data_and_Code/commits") %>% map_chr(pluck, "commit", "committer", "date") %>% ymd_hms() %>% floor_date("day") %>% as.Date() %>% enframe() %>% ggplot(aes(value)) + geom_bar(fill = "darkblue", alpha = .8) + theme_minimal(14) + labs( x = "Data", y = "Quantidade de commits", title = "Quantidade de commits no repositório do SeR 2021" ) ``` ] .panel[.panel-name[Gráfico] <img src="apresentacao_files/figure-html/unnamed-chunk-5-1.png" height="400px" style="display: block; margin: auto;" /> ] .panel[.panel-name[Link] .center[ ### https://github.com/eventoseroficial/Data_and_Code ] ] ]