We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27315f7 + 751f43b commit 9a6a0b8Copy full SHA for 9a6a0b8
_episodes/02-numpy.md
@@ -656,10 +656,11 @@ which is the average inflammation per patient across all days.
656
> > ## Solution
657
> >
658
> > An alternative way to achieve the same result is to use Numpy's
659
-> > delete function to remove the second column of A.
+> > delete function to remove the second column of A. If you're not
660
+> > sure what the parameters of numpy.delete mean, use the help files.
661
662
> > ~~~
-> > D = numpy.delete(A, 1, 1)
663
+> > D = numpy.delete(arr=A, obj=1, axis=1)
664
> > print('D = ')
665
> > print(D)
666
0 commit comments