Skip to content

Commit

Permalink
modified HW1
Browse files Browse the repository at this point in the history
  • Loading branch information
Milad Toutounchian authored and Milad Toutounchian committed Apr 23, 2020
1 parent 7a41536 commit 7489b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Homework/HW1_Pandas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
" hist_ls_dict = dict()\n",
" min_ls = np.min(ls)\n",
" max_ls = np.max(ls)\n",
" I = np.ceil((max_ls - min_ls) / interval)\n",
" I = (max_ls - min_ls) / interval\n",
" for j in range(...):\n",
" hist_ls_dict[j]= ... \n",
" return hist_ls_dict\n",
Expand Down

0 comments on commit 7489b17

Please sign in to comment.