Skip to content

Commit c628cd2

Browse files
authored
ERRATUM: change 0.1 inches to 0.2 inches
Fix typo in 02.06-Boolean-Arrays-and-Masks.ipynb
2 parents bf71379 + 43176fb commit c628cd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notebooks/02.06-Boolean-Arrays-and-Masks.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -777,15 +777,15 @@
777777
"Number days without rain: 215\n",
778778
"Number days with rain: 150\n",
779779
"Days with more than 0.5 inches: 37\n",
780-
"Rainy days with < 0.1 inches : 75\n"
780+
"Rainy days with < 0.2 inches : 75\n"
781781
]
782782
}
783783
],
784784
"source": [
785785
"print(\"Number days without rain: \", np.sum(inches == 0))\n",
786786
"print(\"Number days with rain: \", np.sum(inches != 0))\n",
787787
"print(\"Days with more than 0.5 inches:\", np.sum(inches > 0.5))\n",
788-
"print(\"Rainy days with < 0.1 inches :\", np.sum((inches > 0) &\n",
788+
"print(\"Rainy days with < 0.2 inches :\", np.sum((inches > 0) &\n",
789789
" (inches < 0.2)))"
790790
]
791791
},

0 commit comments

Comments
 (0)