Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions notebooks/chapter_1_introduction/start_here.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,16 @@
"\n",
"_setup_colab.setup(\"howtofit\")"
]
},
{
"cell_type": "code",
"metadata": {},
"source": [
"\n",
"from autofit import setup_notebook; setup_notebook()"
],
"outputs": [],
"execution_count": null
}
],
"metadata": {
Expand Down
2 changes: 2 additions & 0 deletions notebooks/chapter_1_introduction/tutorial_1_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@
"cell_type": "code",
"metadata": {},
"source": [
"\n",
"from autofit import setup_notebook; setup_notebook()\n",
"\n",
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
Expand Down
2 changes: 2 additions & 0 deletions scripts/chapter_1_introduction/start_here.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,5 @@
alongside the larger `autofit_workspace_developer/projects/cosmology/` example. These depend on astronomy-specific datasets
that only live in the developer workspace.
"""

# from autofit import setup_notebook; setup_notebook()
2 changes: 2 additions & 0 deletions scripts/chapter_1_introduction/tutorial_1_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@
performed by PyAutoFit.
"""

# from autofit import setup_notebook; setup_notebook()

import numpy as np
import matplotlib.pyplot as plt

Expand Down
2 changes: 2 additions & 0 deletions start_here.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@
"cell_type": "code",
"metadata": {},
"source": [
"\n",
"from autofit import setup_notebook; setup_notebook()\n",
"\n",
"print(__doc__)\n"
],
Expand Down
2 changes: 2 additions & 0 deletions start_here.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,6 @@
Open `scripts/chapter_1_introduction/start_here.py` (or the `.ipynb` equivalent) and start there.
"""

# from autofit import setup_notebook; setup_notebook()

print(__doc__)
Loading