Python Forum
What does 1 do in X = np.array(df.drop(['label'], 1))?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What does 1 do in X = np.array(df.drop(['label'], 1))?
#1
X = np.array(df.drop(['label'], 1))
I understand this code is to convert a Pandas's dataframe into a numpy array without a column labelled as "label".
But what is 1 doing here?

Accoding to numpy array's definition:numpy.array(object, dtype=None, copy=True, order='K', subok=False, ndmin=0)

it seems is about datatype? I have tried to delete 1, this will produce errors. So 1 is essential here.

On the other hand, if I convert one dataframe's column to a numpy array, it works without a second argument:


y = np.array(df['label'])
Thanks,

L
[/url][url=https://docs.scipy.org/doc/numpy/reference/generated/numpy.array.html#numpy.array]
Reply
#2
Actually, that is argument fo df.drop
http://pandas.pydata.org/pandas-docs/sta....drop.html
Reply
#3
(Feb-04-2017, 01:19 PM)buran Wrote: Actually, that is argument fo df.drop http://pandas.pydata.org/pandas-docs/sta....drop.html

Arha....I need to take a rest. My eye seems not working.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020