Skip to content

Commit b6f05d7

Browse files
committed
Atualizar estrutura e imagens
1 parent 9f10541 commit b6f05d7

File tree

8 files changed

+24
-22
lines changed

8 files changed

+24
-22
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ instance/
6969
.scrapy
7070

7171
# Sphinx documentation
72-
docs/_build/
72+
book/_build/
7373

7474
# PyBuilder
7575
.pybuilder/

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ Tutorial curto (3h) ministrado na Python Sul 2024.
66

77
Vamos explorar as bibliotecas NumPy, SciPy e Matplotlib e discutir boas práticas para a resolução de problemas em ciências em geral e ciência de dados com essas bibliotecas.
88

9-
## Sobre
9+
### Sobre
1010

1111
Neste tutorial, vamos discutir conceitos, fundamentos e aplicações das bibliotecas que formam o núcleo da computação científica em Python: NumPy, SciPy e Matplotlib.
1212

1313
Discutiremos como fazer a transição de Python para o pensamento vetorial, usando os conceitos de *broadcasting*, *stacking* e como garantir um bom desempenho para seu código. Também exploraremos os diversos submódulos das bibliotecas NumPy e SciPy para efetuar operações em estatística, otimização, processamento de imagens e outros. Finalmente, vamos explorar boas práticas para a utilização da Matplotlib para visualização, incluindo a API de orientação a objetos mais recente que permite grande flexibilidade nos gráficos gerados.
1414

15-
### Tabela de Conteúdo
15+
#### Tabela de Conteúdo
1616

1717
- 5 min: Apresentação
1818
- 30 mins: Discussão de conceitos, fundamentos e aplicações da biblioteca NumPy
@@ -23,6 +23,6 @@ Discutiremos como fazer a transição de Python para o pensamento vetorial, usan
2323
- 20 mins: Exercícios e aplicações
2424
- 10 mins: Conclusão
2525

26-
## Público alvo
26+
### Público alvo
2727

2828
Conhecimento básico de Python incluindo listas, loops, condicionais, funções e conceitos básicos de orientação a objetos. Básico de matemática incluindo conceitos de probabilidade (ensino médio).

book/_config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
title: Tutorial Python Brasil 2020
55
author: Melissa
6-
logo: logo.png
6+
logo: python-sul.svg
7+
copyright: "2024"
78

89
# Force re-execution of notebooks on each build.
910
# See https://jupyterbook.org/content/execute.html
@@ -12,7 +13,7 @@ execute:
1213

1314
# Information about where the book exists on the web
1415
repository:
15-
url: https://github.com/melissawm/tutorial-pybr2020 # Online location of your book
16+
url: https://github.com/melissawm/tutorial-pysul2024 # Online location of your book
1617
path_to_book: book # Optional path to your book, relative to the repository root
1718
branch: main # Which branch of the repository should be used when creating links (optional)
1819

@@ -21,3 +22,5 @@ repository:
2122
html:
2223
use_issues_button: true
2324
use_repository_button: true
25+
favicon: logo-header.png
26+

book/_toc.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33

44
format: jb-book
55
root: intro
6-
chapters:
7-
- file: notebooks/00-Tutorial_Python_Brasil_2020.ipynb
8-
- file: notebooks/01-Tutorial_NumPy.ipynb
9-
- file: notebooks/02-Tutorial_Matplotlib.ipynb
10-
- file: notebooks/03-Exemplo_Masked_Arrays.ipynb
11-
- file: notebooks/04-Exemplo_SVD.ipynb
12-
- file: notebooks/05-Exemplo_Queimadas.ipynb
13-
- file: notebooks/06-Tutorial_SciPy.ipynb
14-
- file: notebooks/07-Exemplo_Regressao.ipynb
6+
parts:
7+
- caption: Notebooks
8+
chapters:
9+
- file: notebooks/00-Tutorial_Python_Brasil_2020.ipynb
10+
- file: notebooks/01-Tutorial_NumPy.ipynb
11+
- file: notebooks/02-Tutorial_Matplotlib.ipynb
12+
- file: notebooks/03-Exemplo_Masked_Arrays.ipynb
13+
- file: notebooks/04-Exemplo_SVD.ipynb
14+
- file: notebooks/05-Exemplo_Queimadas.ipynb
15+
- file: notebooks/06-Tutorial_SciPy.ipynb
16+
- file: notebooks/07-Exemplo_Regressao.ipynb

book/intro.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
# Welcome to your Jupyter Book
2-
3-
This is a small sample book to give you a feel for how book content is
4-
structured.
5-
It shows off a few of the major file types, as well as some sample content.
6-
It does not go in-depth into any particular topic - check out [the Jupyter Book documentation](https://jupyterbook.org) for more information.
1+
```{include} ../README.md
2+
```
73

8-
Check out the content pages bundled with this sample book to see more.
4+
## Notebooks
95

106
```{tableofcontents}
117
```

book/logo-header.png

12.3 KB
Loading

book/logo.png

-9.62 KB
Binary file not shown.

book/python-sul.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)