Skip to content

Commit 95e4775

Browse files
committed
Arrumar links e dependencias
1 parent 9c4d1e5 commit 95e4775

11 files changed

+49
-50
lines changed

book/_config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@ html:
2424
use_repository_button: true
2525
favicon: logo-header.png
2626

27+
sphinx:
28+
config:
29+
language: pt
30+

book/_toc.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44
format: jb-book
55
root: intro
66
parts:
7+
- caption: Introdução
8+
chapters:
9+
- file: notebooks/00-Tutorial_Python_Sul_2024.md
710
- caption: Notebooks
811
chapters:
9-
- file: notebooks/00-Tutorial_Python_Sul_2024.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
12+
- file: notebooks/01-Tutorial_NumPy.md
13+
- file: notebooks/02-Tutorial_Matplotlib.md
14+
- file: notebooks/03-Exemplo_Masked_Arrays.md
15+
- file: notebooks/04-Exemplo_SVD.md
16+
- file: notebooks/05-Exemplo_Queimadas.md
17+
- file: notebooks/06-Tutorial_SciPy.md
18+
- file: notebooks/07-Exemplo_Regressao.md

book/notebooks/00-Tutorial_Python_Sul_2024.md

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jupyter:
77
format_version: '1.3'
88
jupytext_version: 1.16.4
99
kernelspec:
10-
display_name: Python 3
10+
display_name: Python 3 (ipykernel)
1111
language: python
1212
name: python3
1313
---
@@ -24,11 +24,6 @@ import matplotlib as mpl
2424

2525
---
2626

27-
```python
28-
#! cp /home/shared/tutorial.zip .
29-
#! unzip tutorial.zip
30-
```
31-
3227
<!-- #region tags=["chapter"] -->
3328
## Introdução
3429

@@ -119,33 +114,26 @@ Image(url="https://media.springernature.com/full/springer-static/image/art%3A10.
119114
<!-- #endregion -->
120115

121116
<!-- #region -->
122-
- [Parte 1. NumPy](01-Tutorial_NumPy.ipynb)
117+
- [Parte 1. NumPy](01-Tutorial_NumPy.md)
123118

124119

125-
- [Parte 2. Matplotlib](02-Tutorial_Matplotlib.ipynb)
120+
- [Parte 2. Matplotlib](02-Tutorial_Matplotlib.md)
126121

127122

128123
- Parte 3. Exemplos práticos
129124

130-
- [Arrays com máscara (masked arrays)](03-Exemplo_Masked_Arrays.ipynb)
131-
- [Aproximação de imagens usando a SVD](04-Exemplo_SVD.ipynb)
132-
- [Queimadas](05-Exemplo_Queimadas.ipynb)
125+
- [Arrays com máscara (masked arrays)](03-Exemplo_Masked_Arrays.md)
126+
- [Aproximação de imagens usando a SVD](04-Exemplo_SVD.md)
127+
- [Queimadas](05-Exemplo_Queimadas.md)
133128

134129

135-
- [Parte 4. SciPy](06-Tutorial_SciPy.ipynb)
136-
- [Regressão](07-Exemplo_Regressao.ipynb)
130+
- [Parte 4. SciPy](06-Tutorial_SciPy.md)
131+
- [Regressão](07-Exemplo_Regressao.md)
137132

138133
<!-- #endregion -->
139134

140135
---
141136

142-
143-
## Para terminar...
144-
145-
```python
146-
Image(url="https://pics.me.me/lee-lee-dibango-pmishraworld-math-problem-2-2-me-import-numpy-35881429.png", width=600)
147-
```
148-
149137
<!-- #region tags=["chapter"] -->
150138
## Outras ferramentas
151139

@@ -168,7 +156,7 @@ Algumas referências interessantes e caminhos para mais informações além da d
168156

169157

170158
- [From Python to NumPy](https://github.com/rougier/from-python-to-numpy), livro aberto de Nicolas Rougier.
171-
- [SciPy Lecture Notes](https://scipy-lectures.org/)
159+
- [Scientific Python Lectures](https://lectures.scientific-python.org/)
172160
- [Elegant SciPy](https://github.com/elegant-scipy/elegant-scipy), livro aberto de Juan Nunez-Iglesias, Harriet Dashnow and Stéfan van der Walt (também publicado pela O'Reilly)
173161

174162
<!-- #region tags=["chapter"] -->

book/notebooks/01-Tutorial_NumPy.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jupyter:
55
extension: .md
66
format_name: markdown
77
format_version: '1.3'
8-
jupytext_version: 1.16.1
8+
jupytext_version: 1.16.4
99
kernelspec:
10-
display_name: Python 3
10+
display_name: Python 3 (ipykernel)
1111
language: python
1212
name: python3
1313
---
@@ -646,7 +646,7 @@ np.allclose(np.sin(x), np.zeros(np.shape(x)))
646646
---
647647

648648

649-
### Basic Indexing, Fancy Indexing
649+
### Basic Indexing, Advanced (Fancy) Indexing
650650

651651
```python
652652
x = np.arange(10)
@@ -782,9 +782,9 @@ print(np.__doc__)
782782
---
783783

784784

785-
[Voltar ao notebook principal](00-Tutorial_Python_Brasil_2020.ipynb)
785+
[Voltar ao notebook principal](00-Tutorial_Python_Sul_2024.md)
786786

787-
[Ir para o notebook Matplotlib](02-Tutorial_Matplotlib.ipynb)
787+
[Ir para o notebook Matplotlib](02-Tutorial_Matplotlib.md)
788788

789789
```python
790790

book/notebooks/02-Tutorial_Matplotlib.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jupyter:
77
format_version: '1.3'
88
jupytext_version: 1.16.4
99
kernelspec:
10-
display_name: Python 3
10+
display_name: Python 3 (ipykernel)
1111
language: python
1212
name: python3
1313
---
@@ -145,10 +145,14 @@ Image(url="https://matplotlib.org/_images/anatomy.png")
145145
---
146146

147147

148-
[Voltar ao notebook principal](00-Tutorial_Python_Brasil_2020.ipynb)
148+
[Voltar ao notebook principal](00-Tutorial_Python_Sul_2024.md)
149149

150-
[Ir para o notebook Masked Arrays](03-Exemplo_Masked_Arrays.ipynb)
150+
[Ir para o notebook Masked Arrays](03-Exemplo_Masked_Arrays.md)
151151

152-
[Ir para o notebook SVD](04-Exemplo_SVD.ipynb)
152+
[Ir para o notebook SVD](04-Exemplo_SVD.md)
153153

154-
[Ir para o notebook Queimadas](05-Exemplo_Queimadas.ipynb)
154+
[Ir para o notebook Queimadas](05-Exemplo_Queimadas.md)
155+
156+
```python
157+
158+
```

book/notebooks/03-Exemplo_Masked_Arrays.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jupyter:
77
format_version: '1.3'
88
jupytext_version: 1.16.4
99
kernelspec:
10-
display_name: Python 3
10+
display_name: Python 3 (ipykernel)
1111
language: python
1212
name: python3
1313
---
@@ -231,11 +231,11 @@ plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020 - Mainland China\
231231
---
232232

233233

234-
[Voltar ao notebook principal](00-Tutorial_Python_Brasil_2020.ipynb)
234+
[Voltar ao notebook principal](00-Tutorial_Python_Sul_2024.md)
235235

236-
[Ir para o notebook SVD](04-Exemplo_SVD.ipynb)
236+
[Ir para o notebook SVD](04-Exemplo_SVD.md)
237237

238-
[Ir para o notebook Queimadas](05-Exemplo_Queimadas.ipynb)
238+
[Ir para o notebook Queimadas](05-Exemplo_Queimadas.md)
239239

240240
```python
241241

book/notebooks/04-Exemplo_SVD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jupyter:
77
format_version: '1.3'
88
jupytext_version: 1.16.4
99
kernelspec:
10-
display_name: Python 3
10+
display_name: Python 3 (ipykernel)
1111
language: python
1212
name: python3
1313
---

book/notebooks/05-Exemplo_Queimadas.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jupyter:
77
format_version: '1.3'
88
jupytext_version: 1.16.4
99
kernelspec:
10-
display_name: Python 3
10+
display_name: Python 3 (ipykernel)
1111
language: python
1212
name: python3
1313
---
@@ -24,7 +24,7 @@ Dados da NASA: https://firms.modaps.eosdis.nasa.gov/
2424
```
2525

2626
```python
27-
zipfile_inpe = "Focos_BDQueimadas.zip"
27+
zipfile_inpe = "dados/Focos_BDQueimadas.zip"
2828
```
2929

3030
```python
@@ -206,9 +206,9 @@ ax2.set_ylabel('Dias sem chuva')
206206
fig.tight_layout()
207207
```
208208

209-
[Voltar ao notebook principal](00-Tutorial_Python_Brasil_2020.ipynb)
209+
[Voltar ao notebook principal](00-Tutorial_Python_Sul_2024.md)
210210

211-
[Ir para o notebook SciPy](06-Tutorial_SciPy.ipynb)
211+
[Ir para o notebook SciPy](06-Tutorial_SciPy.md)
212212

213213
```python
214214

book/notebooks/06-Tutorial_SciPy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jupyter:
77
format_version: '1.3'
88
jupytext_version: 1.16.4
99
kernelspec:
10-
display_name: Python 3
10+
display_name: Python 3 (ipykernel)
1111
language: python
1212
name: python3
1313
---

book/notebooks/07-Exemplo_Regressao.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jupyter:
77
format_version: '1.3'
88
jupytext_version: 1.16.4
99
kernelspec:
10-
display_name: Python 3
10+
display_name: Python 3 (ipykernel)
1111
language: python
1212
name: python3
1313
---

book/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ jupyter-book
22
matplotlib
33
numpy
44
scipy
5+
pandas
56
ipympl
67
jupyterlab
78
jupytext

0 commit comments

Comments
 (0)