We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In [104]: x = [[1,3,3], [7,5,2]] print(np.argmax(x,axis=0))
这里的axis=0应修改为: axis=1 否则与说明不符
The text was updated successfully, but these errors were encountered:
i'm a beginner to jupyter notebooks and data science, numpy... i tried this on my jupyter notebook:
"""import numpy as np a= np.array([1,2,3,4]) print(a)"""
and it showed me this error:
NameError Traceback (most recent call last) in ----> 1 import numpy as np 2 a= np.array([1,2,3,4]) 3 print(a)
~\numpy.py in 32 { 33 "cell_type": "code", ---> 34 "execution_count": null, 35 "metadata": {}, 36 "outputs": [],
NameError: name 'null' is not defined
please help thank you.
Sorry, something went wrong.
No branches or pull requests
In [104]:
x = [[1,3,3],
[7,5,2]]
print(np.argmax(x,axis=0))
这里的axis=0应修改为:
axis=1
否则与说明不符
The text was updated successfully, but these errors were encountered: