├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Object file 2 | *.o 3 | 4 | # Ada Library Information 5 | *.ali 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 mulheres em dados 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ✨ Trilha de Estudos para Analytics Engineer ✨ 2 | 3 |
4 | 5 | #### O que faz uma Analytics Engineer? 6 | 7 | A Analytics Engineer é a pessoa responsável pela governança dos dados, sendo uma grande promotora da cultura e alfabetização de dados na empresa. 8 | Essa pessoa atende diretamente uma estratégia do negócio, e une o início do pipeline de dados às áreas de negócio, funcionando como uma espécie de cola entre usuário final e engenharia. É uma profissional que busca sempre equilibrar performance e negócio, estando por dentro das necessidades e desafios dos usuários finais. A posição normalmente é pensada para estar imersa em uma área específica do negócio, permitindo que a profissional ganhe um contexto mais profundo dessa área e conheça com mais propriedade as dores e oportunidades, ao invés de ter uma noção generalista. Normalmente, a profissional tem background em BI ou engenharia de dados. 9 | 10 | O maior entregável da Analytics Engineer é uma **modelagem de dados** com **boa performance**, **escalabilidade** e **aplicabilidade de negócio**! 11 | 12 | ## 13 | 14 | #### HARD SKILLS NECESSÁRIAS 15 | - SQL 16 | - Conhecimento em linguagem de programação mais estruturada, como **Python**. 17 | - Cloud Computing: AWS, Azure, Google Cloud, etc. 18 | - Data Lake/Lakehouse: Dremio, Presto, Athena, Big Query, etc. 19 | - Versionamento de código: GitHub 20 | - Visualização de dados: Power BI, Tableau, Looker, etc. 21 | 22 | ## 23 | 24 | #### SOFT SKILLS NECESSÁRIAS 25 | - Boa capacidade de comunicação 26 | - Visão estratégica de curto e longo prazo 27 | - Visão de negócio 28 | - Trabalhar bem em equipe 29 | - Capacidade analítica 30 | - Habilidade para trabalhar em ambientes ágeis 31 | ## 32 | 33 | #### 📍 CURSOS 34 | 35 | - Python Fundamentos para Análise de Dados - Data Science Academy - https://www.datascienceacademy.com.br/course/python-fundamentos 36 | - SQL Iniciante - Alura - https://www.alura.com.br/cursos-online-data-science/sql 37 | - SQL Avançado - Nate at StrataScratch - https://www.youtube.com/channel/UCW8Ews7tdKKkBT6GdtQaXvQ 38 | - Bootcamp Desenvolvedor BI - IGTI - https://www.igti.com.br/bootcamp/desenvolvedor-business-intelligence 39 | 40 | #### 📍 LEITURAS 41 | 42 | - LIVRO - Storytelling com Dados: Um guia sobre visualização de dados para profissionais de negócios - Cole Nussbaumer Knaflic - https://www.amazon.com.br/gp/product/8550804681/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=8550804681&linkCode=as2&tag=mulheresdados-20&linkId=d1bfb82fc2400d81056be3b3f71c1578 43 | - SITE - The Analytics Engineering Guide - https://www.getdbt.com/analytics-engineering/ 44 | 45 | 46 | #### 📍 REFERÊNCIAS 47 | 48 | - ARTIGO - Nubank Data Analysts are now called Analytics Engineers - https://building.nubank.com.br/nubank-data-analysts-are-now-called-analytics-engineers/ 49 | - ARTIGO - Como é o processo seletivo para Analytics Engineer no Nubank? - https://blog.nubank.com.br/como-e-o-processo-seletivo-para-analytics-engineer-no-nubank/ 50 | - ARTIGO - What is analytics engineering? - https://www.getdbt.com/what-is-analytics-engineering/ 51 | 52 |
53 | --------------------------------------------------------------------------------