Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edits suggested for chapter 3 #60

Merged
merged 4 commits into from
Apr 11, 2024
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
2 changes: 1 addition & 1 deletion modules/chapter3/pages/index.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Jupyter Notebooks

This chapter introduces you to Jupyter notebooks, why they are considered a useful tool for data science, and how you can use them.
This chapter introduces you to Jupyter notebooks, explains why they are considered a useful tool for data science, and shows you how to use them.

Chapter goals:

Expand Down
18 changes: 10 additions & 8 deletions modules/chapter3/pages/section1.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ Jupyter notebooks have become a popular tool for data scientists who work in dat
To fully understand the Jupyter ecosystem, you must understand the following three concepts:

Notebook file::
A notebook file, also called _Jupyter notebook_, or just _notebook_, is a file that contains code and multimedia content, including text, images, and audio.
This files typically use the `.ipynb` extension.
A notebook file, also called as _Jupyter notebook_, or just _notebook_, is a file that contains code and multimedia content, including text, images, and audio.
This file typically uses the `.ipynb` extension.
+
A notebook contains cells.
These cells can contain either Markdown or executable code.


JupyterLab::
JupyterLab is the execution environment that runs the notebook files.
It exposes a web interface for you to visualize, edit and execute the notebooks on a web browser.
Expand All @@ -25,10 +26,11 @@ It also provided a notebook execution environment and a web interface.
Note that the naming of the classic Jupyter Notebook environment can lead to confusion, because the _Jupyter notebook_ term can also refer to a notebook file.
====
+
There are many ways to run an execution environment for notebooks.
You can install JupyterLab with `pip` and run it on your computer.
You can use the JupyterLab instances included in the RHOAI workspaces.
You can use online notebook execution environments, such as Binder, Kaggle, or Google Colab.
There are many ways to run an execution environment for notebooks. They are as follows :

* You can install JupyterLab with `pip` and run it on your computer.
* You can use the JupyterLab instances included in the RHOAI workspaces.
* You can use online notebook execution environments, such as Binder, Kaggle, or Google Colab.

Project Jupyter::
This is the umbrella open source project that defines the notebook file format and develops and maintains the JupyterLab and the Jupyter Notebook environments.
Expand All @@ -55,9 +57,9 @@ These cells contain Markdown content and are intended to add rich text to the no
Code cells::
These cells contain executable code.
JupyterLab includes support for cells that run Python code, but you can add other execution environments.
These environments are called _kernels_.
These environments are known as _kernels_.

The exercise bellow covers cells in more detail.
The exercise below covers cells in more detail.

== Kernels

Expand Down
2 changes: 1 addition & 1 deletion modules/chapter3/pages/section2.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ You have now created your first notebook.
+
[IMPORTANT]
====
Before creating a notebook, verify that your are at the directory where you wish to create the notebook file.
Before creating a notebook, verify that you are at the directory where you wish to create the notebook file.
Use the JupyterLab file browser to navigate to the right directory.
====

Expand Down
Loading