Skip to content

Commit

Permalink
missing _lb ex4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
klmedeiros committed Oct 30, 2018
1 parent f289dcd commit 172876a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chapter4.md
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ np_baseball = np.array(baseball)
# Print out the 50th row of np_baseball
# Select the entire second column of np_baseball: np_weight
# Select the entire second column of np_baseball: np_weight_lb
# Print out height of 124th player
Expand All @@ -820,7 +820,7 @@ np_baseball = np.array(baseball)
# Print out the 50th row of np_baseball
print(np_baseball[49,:])
# Select the entire second column of np_baseball: np_weight
# Select the entire second column of np_baseball: np_weight_lb
np_weight_lb = np_baseball[:,1]
# Print out height of 124th player
Expand Down

0 comments on commit 172876a

Please sign in to comment.