Skip to content

Commit

Permalink
Fix small error related to call of Numpy lib.
Browse files Browse the repository at this point in the history
  • Loading branch information
tais committed May 18, 2018
1 parent 88bef0d commit 0e31421
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
"import pandas as pd\n",
"\n",
"## Import Numpy library\n",
"import numpy\n",
"import numpy as np\n",
"\n",
"## Import subprocess\n",
"import subprocess\n",
Expand Down Expand Up @@ -1782,7 +1782,7 @@
"outputs": [],
"source": [
"## Save the minimum of optimized threshold in a new variable called \"optimized_threshold\"\n",
"optimized_threshold=round(numpy.amin(uspo_parameters_list),3)\n",
"optimized_threshold=round(np.amin(uspo_parameters_list),3)\n",
"print \"The lowest of the 'USPOs region' optimized threshold is \"+str(optimized_threshold)"
]
},
Expand Down

0 comments on commit 0e31421

Please sign in to comment.