Skip to content

Commit 7b67997

Browse files
committed
Fix bug
1 parent eaedf95 commit 7b67997

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

Lecture-3-Introduction-to-Numpy.ipynb

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3908,22 +3908,23 @@
39083908
},
39093909
{
39103910
"cell_type": "code",
3911-
"execution_count": 188,
3911+
"execution_count": 156,
39123912
"metadata": {},
39133913
"outputs": [
39143914
{
39153915
"data": {
39163916
"text/plain": [
3917-
"(50, 300)"
3917+
"(77431, 7)"
39183918
]
39193919
},
3920-
"execution_count": 188,
3920+
"execution_count": 156,
39213921
"metadata": {},
39223922
"output_type": "execute_result"
39233923
}
39243924
],
39253925
"source": [
3926-
"# reminder, the tempeature dataset is stored in the data variable:\n",
3926+
"# load tempeature dataset into the data variable:\n",
3927+
"data = np.genfromtxt('data/stockholm_td_adj.dat')\n",
39273928
"np.shape(data)"
39283929
]
39293930
},
@@ -3936,16 +3937,16 @@
39363937
},
39373938
{
39383939
"cell_type": "code",
3939-
"execution_count": 189,
3940+
"execution_count": 157,
39403941
"metadata": {},
39413942
"outputs": [
39423943
{
39433944
"data": {
39443945
"text/plain": [
3945-
"2219.277558264926"
3946+
"6.197109684751585"
39463947
]
39473948
},
3948-
"execution_count": 189,
3949+
"execution_count": 157,
39493950
"metadata": {},
39503951
"output_type": "execute_result"
39513952
}
@@ -3971,16 +3972,16 @@
39713972
},
39723973
{
39733974
"cell_type": "code",
3974-
"execution_count": 190,
3975+
"execution_count": 158,
39753976
"metadata": {},
39763977
"outputs": [
39773978
{
39783979
"data": {
39793980
"text/plain": [
3980-
"(2770.438815555765, 7675331.230738031)"
3981+
"(8.282271621340573, 68.59602320966341)"
39813982
]
39823983
},
3983-
"execution_count": 190,
3984+
"execution_count": 158,
39843985
"metadata": {},
39853986
"output_type": "execute_result"
39863987
}
@@ -3998,16 +3999,16 @@
39983999
},
39994000
{
40004001
"cell_type": "code",
4001-
"execution_count": 191,
4002+
"execution_count": 159,
40024003
"metadata": {},
40034004
"outputs": [
40044005
{
40054006
"data": {
40064007
"text/plain": [
4007-
"395.79906832240175"
4008+
"-25.8"
40084009
]
40094010
},
4010-
"execution_count": 191,
4011+
"execution_count": 159,
40114012
"metadata": {},
40124013
"output_type": "execute_result"
40134014
}
@@ -4019,16 +4020,16 @@
40194020
},
40204021
{
40214022
"cell_type": "code",
4022-
"execution_count": 192,
4023+
"execution_count": 160,
40234024
"metadata": {},
40244025
"outputs": [
40254026
{
40264027
"data": {
40274028
"text/plain": [
4028-
"18266.30678347986"
4029+
"28.3"
40294030
]
40304031
},
4031-
"execution_count": 192,
4032+
"execution_count": 160,
40324033
"metadata": {},
40334034
"output_type": "execute_result"
40344035
}

0 commit comments

Comments
 (0)