File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 44 - index.qmd
55 - chapters/chapter1.qmd
66 - notebooks/notebook1.qmd
7+ - notebooks/notebook2.qmd
78
89website :
910 page-navigation : true
Original file line number Diff line number Diff line change 11---
2- title : " A basic notebook "
2+ title : " Quarto Basics "
33format : ipynb # This qmd file will be compiled as a jupyter notebook
4+ jupyter : python3
45---
56
6- # A beautiful figure
7+ ## A beautiful figure
78
89This chunk shows how you can produce a beautiful figure.
910
Original file line number Diff line number Diff line change 1+ ---
2+ title : " Quarto Basics"
3+ format : ipynb # This qmd file will be compiled as a jupyter notebook
4+ jupyter : python3
5+ ---
6+
7+ ## Introduction
8+ This is a basic Quarto document rendered as a Jupyter notebook.
9+
10+ ``` {python}
11+ import numpy as np
12+ import matplotlib.pyplot as plt
13+
14+ x = np.linspace(0, 2 * np.pi, 100)
15+ y = np.sin(x)
16+
17+ plt.plot(x, y)
18+ plt.title("Sine Wave")
19+ plt.show()
20+ ```
You can’t perform that action at this time.
0 commit comments