Skip to content

Commit 02e296e

Browse files
committed
Fixed formatting
1 parent d357598 commit 02e296e

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

notebooks/L6/numpy/Advanced-data-processing-with-NumPy.ipynb

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,16 @@
1919
"\n",
2020
"### Previewing the data file.\n",
2121
"\n",
22-
"To start, let's have a look at the top few lines of our data file."
23-
]
24-
},
25-
{
26-
"cell_type": "raw",
27-
"metadata": {},
28-
"source": [
22+
"To start, let's have a look at the top few lines of our data file.\n",
23+
"\n",
24+
"```\n",
2925
"STATION ELEVATION LATITUDE LONGITUDE DATE PRCP TAVG TMAX TMIN \n",
3026
"----------------- ---------- ---------- ---------- -------- -------- -------- -------- -------- \n",
3127
"GHCND:USW00014853 236.8 42.23333 -83.53333 20070101 0.03 -9999 50 32 \n",
3228
"GHCND:USW00014853 236.8 42.23333 -83.53333 20070102 0.00 -9999 43 26 \n",
33-
"GHCND:USW00014853 236.8 42.23333 -83.53333 20070103 0.00 -9999 46 30"
34-
]
35-
},
36-
{
37-
"cell_type": "markdown",
38-
"metadata": {},
39-
"source": [
29+
"GHCND:USW00014853 236.8 42.23333 -83.53333 20070103 0.00 -9999 46 30\n",
30+
"```\n",
31+
"\n",
4032
"So, we have 9 columns in the file, with values separated by variable numbers of spaces.\n",
4133
"Another thing to notice are the `-9999` values, which indicate missing data.\n",
4234
"Otherwise, some columns contain numerical values, and those will be our focus for today's lesson.\n",

0 commit comments

Comments
 (0)