Python Forum
Thread Rating:
  • 2 Vote(s) - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pd.DataFrame question
#3
(Mar-30-2017, 08:17 PM)zivoni Wrote: You should check documentation for pandas dataframe. columns parameter accepts list of column names, so you are trying to create dataframe with colums named as values in df.Hour column (with width given by lenght of your original dataframe). If you just want to use existing column as an index, just use:
 df2 = df.set_index('Day of Week', drop=True)[['Hour']] 
that will set index values from Day of Week column and deletes Day of Week column. If your original dataframe contains only Hour and Day of Week columns, selecting with [['Hour']] is obsolete.


Thank you!
Reply


Messages In This Thread
pd.DataFrame question - by smw10c - Mar-30-2017, 07:01 PM
RE: pd.DataFrame question - by zivoni - Mar-30-2017, 08:17 PM
RE: pd.DataFrame question - by smw10c - Mar-30-2017, 09:12 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python & Dataframe basic question georgialtr 0 3,854 Apr-06-2020, 03:59 PM
Last Post: georgialtr
  Simple pandas dataframe question popohoma 1 3,537 Jan-03-2019, 05:00 PM
Last Post: ashlardev
  Newbie question to return only the index of a dataframe zydjohn 0 2,551 Jan-22-2018, 03:40 PM
Last Post: zydjohn
  Question for dataframe to replace INF value zydjohn 0 5,133 Jan-15-2018, 10:00 PM
Last Post: zydjohn
  very simple dataframe question really_this_dumb 0 2,177 Jan-02-2018, 11:30 AM
Last Post: really_this_dumb
  Newbie question: how to generate dataframe and use multiple regression zydjohn 0 2,277 Dec-10-2017, 09:49 AM
Last Post: zydjohn

Forum Jump:

User Panel Messages

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