WEBVTT

00:00:00.000 --> 00:00:03.520
>> After getting my entire
data science environment setup

00:00:03.520 --> 00:00:04.620
in VS Code,

00:00:04.620 --> 00:00:05.925
I spent a little bit of time

00:00:05.925 --> 00:00:08.220
orienting myself to
Jupyter Notebooks.

00:00:08.220 --> 00:00:09.330
In this next video,

00:00:09.330 --> 00:00:10.860
I'm going to introduce you to them.

00:00:10.860 --> 00:00:13.050
As always, there's documentation here

00:00:13.050 --> 00:00:16.300
linked on the screen and down
in the description below.

00:00:16.730 --> 00:00:19.230
Now, I'm just going to make sure that

00:00:19.230 --> 00:00:23.470
the Azure SDK that we installed
is in fact accessible.

00:00:24.020 --> 00:00:26.280
I also want to make sure some of

00:00:26.280 --> 00:00:30.040
the other libraries that we
need are accessible as well.

00:00:31.550 --> 00:00:33.875
Just to be extra careful,

00:00:33.875 --> 00:00:34.970
I'll make sure that we have

00:00:34.970 --> 00:00:38.040
the correct version
of the AzureML SDK.

00:00:38.810 --> 00:00:41.210
We'll go ahead and run this cell by

00:00:41.210 --> 00:00:44.070
clicking on this green arrow here.

00:00:48.140 --> 00:00:51.270
It looks like we have
everything up and running.

00:00:51.270 --> 00:00:54.080
A couple of things to note
about Jupyter Notebooks,

00:00:54.080 --> 00:00:57.020
up here at the top, you have some
actions that you can perform.

00:00:57.020 --> 00:00:59.650
You can hover over them
to see what they are.

00:00:59.650 --> 00:01:01.500
This fast forward button,

00:01:01.500 --> 00:01:04.325
will run all of the cells in your
Notebook one after the other,

00:01:04.325 --> 00:01:06.995
stopping if it hits any errors.

00:01:06.995 --> 00:01:09.755
This play button with
the arrow pointing up,

00:01:09.755 --> 00:01:11.750
will run all of the cells above

00:01:11.750 --> 00:01:14.515
the current cell that
you're on, non-inclusive.

00:01:14.515 --> 00:01:16.820
This play button with
the arrow going down,

00:01:16.820 --> 00:01:18.455
will run the current
cell that you're on

00:01:18.455 --> 00:01:20.615
and all of the cells below it.

00:01:20.615 --> 00:01:24.635
This refresh button, will actually
restart the entire kernel.

00:01:24.635 --> 00:01:27.500
If you do this, you will
need to re-run any of

00:01:27.500 --> 00:01:31.480
the earlier cells because all
of your variables will be lost.

00:01:31.480 --> 00:01:35.495
This stop button will
interrupt the Python kernel.

00:01:35.495 --> 00:01:39.155
This plus button will allow
you to insert a cell.

00:01:39.155 --> 00:01:42.485
You can also insert a cell with
this plus button down here,

00:01:42.485 --> 00:01:46.430
and move the cells with
these arrows here.

00:01:46.430 --> 00:01:50.960
This icon will clear all of
the output in your Notebook.

00:01:50.960 --> 00:01:55.850
This will show all of the active
variables in your kernel.

00:01:55.850 --> 00:01:58.280
This will allow you
to save the Notebook,

00:01:58.280 --> 00:02:01.465
but you can also just
press "Control S".

00:02:01.465 --> 00:02:03.840
Finally, this will convert

00:02:03.840 --> 00:02:06.775
your Notebook and save
it to a Python Script.

00:02:06.775 --> 00:02:10.100
The last thing to note
is that you can click on

00:02:10.100 --> 00:02:12.590
this ''Markdown'' icon
here at the top of

00:02:12.590 --> 00:02:15.350
any cell and convert
that cell into markdown.

00:02:15.350 --> 00:02:17.675
Then by clicking these brackets,

00:02:17.675 --> 00:02:19.825
you can convert it back to code.

00:02:19.825 --> 00:02:22.395
Finally, if you want
to delete a cell,

00:02:22.395 --> 00:02:25.120
all you have to do is
click the ''Trash can''.

00:02:25.460 --> 00:02:28.490
I think we're actually
ready to get started with

00:02:28.490 --> 00:02:31.800
writing our code inside
of Visual Studio Code.

