Skip to content

Commit

Permalink
Arrumar links e dependencias
Browse files Browse the repository at this point in the history
  • Loading branch information
melissawm committed Aug 24, 2024
1 parent 9c4d1e5 commit 95e4775
Show file tree
Hide file tree
Showing 11 changed files with 49 additions and 50 deletions.
4 changes: 4 additions & 0 deletions book/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,7 @@ html:
use_repository_button: true
favicon: logo-header.png

sphinx:
config:
language: pt

18 changes: 10 additions & 8 deletions book/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
format: jb-book
root: intro
parts:
- caption: Introdução
chapters:
- file: notebooks/00-Tutorial_Python_Sul_2024.md
- caption: Notebooks
chapters:
- file: notebooks/00-Tutorial_Python_Sul_2024.ipynb
- file: notebooks/01-Tutorial_NumPy.ipynb
- file: notebooks/02-Tutorial_Matplotlib.ipynb
- file: notebooks/03-Exemplo_Masked_Arrays.ipynb
- file: notebooks/04-Exemplo_SVD.ipynb
- file: notebooks/05-Exemplo_Queimadas.ipynb
- file: notebooks/06-Tutorial_SciPy.ipynb
- file: notebooks/07-Exemplo_Regressao.ipynb
- file: notebooks/01-Tutorial_NumPy.md
- file: notebooks/02-Tutorial_Matplotlib.md
- file: notebooks/03-Exemplo_Masked_Arrays.md
- file: notebooks/04-Exemplo_SVD.md
- file: notebooks/05-Exemplo_Queimadas.md
- file: notebooks/06-Tutorial_SciPy.md
- file: notebooks/07-Exemplo_Regressao.md
30 changes: 9 additions & 21 deletions book/notebooks/00-Tutorial_Python_Sul_2024.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jupyter:
format_version: '1.3'
jupytext_version: 1.16.4
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand All @@ -24,11 +24,6 @@ import matplotlib as mpl

---

```python
#! cp /home/shared/tutorial.zip .
#! unzip tutorial.zip
```

<!-- #region tags=["chapter"] -->
## Introdução

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

<!-- #region -->
- [Parte 1. NumPy](01-Tutorial_NumPy.ipynb)
- [Parte 1. NumPy](01-Tutorial_NumPy.md)


- [Parte 2. Matplotlib](02-Tutorial_Matplotlib.ipynb)
- [Parte 2. Matplotlib](02-Tutorial_Matplotlib.md)


- Parte 3. Exemplos práticos

- [Arrays com máscara (masked arrays)](03-Exemplo_Masked_Arrays.ipynb)
- [Aproximação de imagens usando a SVD](04-Exemplo_SVD.ipynb)
- [Queimadas](05-Exemplo_Queimadas.ipynb)
- [Arrays com máscara (masked arrays)](03-Exemplo_Masked_Arrays.md)
- [Aproximação de imagens usando a SVD](04-Exemplo_SVD.md)
- [Queimadas](05-Exemplo_Queimadas.md)


- [Parte 4. SciPy](06-Tutorial_SciPy.ipynb)
- [Regressão](07-Exemplo_Regressao.ipynb)
- [Parte 4. SciPy](06-Tutorial_SciPy.md)
- [Regressão](07-Exemplo_Regressao.md)

<!-- #endregion -->

---


## Para terminar...

```python
Image(url="https://pics.me.me/lee-lee-dibango-pmishraworld-math-problem-2-2-me-import-numpy-35881429.png", width=600)
```

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

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


- [From Python to NumPy](https://github.com/rougier/from-python-to-numpy), livro aberto de Nicolas Rougier.
- [SciPy Lecture Notes](https://scipy-lectures.org/)
- [Scientific Python Lectures](https://lectures.scientific-python.org/)
- [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)

<!-- #region tags=["chapter"] -->
Expand Down
10 changes: 5 additions & 5 deletions book/notebooks/01-Tutorial_NumPy.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jupyter:
extension: .md
format_name: markdown
format_version: '1.3'
jupytext_version: 1.16.1
jupytext_version: 1.16.4
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand Down Expand Up @@ -646,7 +646,7 @@ np.allclose(np.sin(x), np.zeros(np.shape(x)))
---


### Basic Indexing, Fancy Indexing
### Basic Indexing, Advanced (Fancy) Indexing

```python
x = np.arange(10)
Expand Down Expand Up @@ -782,9 +782,9 @@ print(np.__doc__)
---


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

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

```python

Expand Down
14 changes: 9 additions & 5 deletions book/notebooks/02-Tutorial_Matplotlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jupyter:
format_version: '1.3'
jupytext_version: 1.16.4
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand Down Expand Up @@ -145,10 +145,14 @@ Image(url="https://matplotlib.org/_images/anatomy.png")
---


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

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

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

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

```python

```
8 changes: 4 additions & 4 deletions book/notebooks/03-Exemplo_Masked_Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jupyter:
format_version: '1.3'
jupytext_version: 1.16.4
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand Down Expand Up @@ -231,11 +231,11 @@ plt.title("COVID-19 cumulative cases from Jan 21 to Feb 3 2020 - Mainland China\
---


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

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

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

```python

Expand Down
2 changes: 1 addition & 1 deletion book/notebooks/04-Exemplo_SVD.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jupyter:
format_version: '1.3'
jupytext_version: 1.16.4
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand Down
8 changes: 4 additions & 4 deletions book/notebooks/05-Exemplo_Queimadas.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jupyter:
format_version: '1.3'
jupytext_version: 1.16.4
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand All @@ -24,7 +24,7 @@ Dados da NASA: https://firms.modaps.eosdis.nasa.gov/
```

```python
zipfile_inpe = "Focos_BDQueimadas.zip"
zipfile_inpe = "dados/Focos_BDQueimadas.zip"
```

```python
Expand Down Expand Up @@ -206,9 +206,9 @@ ax2.set_ylabel('Dias sem chuva')
fig.tight_layout()
```

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

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

```python

Expand Down
2 changes: 1 addition & 1 deletion book/notebooks/06-Tutorial_SciPy.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jupyter:
format_version: '1.3'
jupytext_version: 1.16.4
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand Down
2 changes: 1 addition & 1 deletion book/notebooks/07-Exemplo_Regressao.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jupyter:
format_version: '1.3'
jupytext_version: 1.16.4
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand Down
1 change: 1 addition & 0 deletions book/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ jupyter-book
matplotlib
numpy
scipy
pandas
ipympl
jupyterlab
jupytext

0 comments on commit 95e4775

Please sign in to comment.