Python Forum
shifting specific column to before/after specific column in dataframe
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
shifting specific column to before/after specific column in dataframe
#1
In dataframe,
a b f g c d e i j h
0 1 1 1 1 1 1 1 1 1 1
1 0 0 1 0 0 1 1 1 1 0
2 1 1 1 1 1 0 0 0 0 1
3 1 0 1 0 0 1 1 1 1 0
4 1 1 1 1 1 0 1 0 0 1
5 1 0 1 0 0 1 1 1 1 0
6 1 1 1 1 1 0 1 0 1 1
7 0 0 0 0 0 0 1 0 1 0
8 1 1 1 1 1 1 1 1 1 1
9 0 0 0 0 0 0 0 0 1 0
10 1 1 1 1 1 1 1 1 1 1


I want to shift these three : 'c','d','e' to the place of after b' and column 'h' to place after 'g'.

My idea is shifting the specific columns to place after/ before specific columns in dataframe for wider purpose . please suggest me! Thanks
Reply
#2
You can specify the order of columns as you want, e.g.:

x=pd.DataFrame({'a': [1,2,3], 'b':[3,4,5], 'c':[5,6,7]})
x = x[['b','c','a']]
Output:
b c a 0 3 5 1 1 4 6 2 2 5 7 3
Reply
#3
In my data set,
there are 699 columns , I want to move column number : 694,695 to 26 and 27 respectively.
How is your suggestion!
Reply
#4
x=df.columns.get_loc('col') # getting column index , the place before that column

var_list=new_var # list of columns that are need to moved or order if multiple column and they are in
sequence position .
new_position = x
for var in var_list:
cols = df.columns.tolist()
column_to_move = var
new_position += 1
cols.insert(new_position, cols.pop(cols.index(column_to_move)))
df = df[cols]
Reply
#5
Luckily, Python is programming language
and we don't need to type all items manually.

Your code would be something like this:

columns = ['col%s' % k for k in range(700)] # df.columns.tolist()
col694 = columns.pop(694)
col695 = columns.pop(694)
columns.insert(26, col694)
columns.insert(27, col695)
# df = df[columns] # reorder columns
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Camelot not able to change column header shortmeister1 2 648 Mar-22-2025, 04:47 AM
Last Post: Pedroski55
  Transform 3 Columns into Single Column DaveG 9 3,452 Mar-19-2025, 03:46 AM
Last Post: robbert23
  Building specific Python version on Raspberry PI 5 (Raspbian) andrewk 2 639 Feb-03-2025, 11:41 AM
Last Post: iterate
  Word matching with specific parameters CascadeDiver 3 828 Jan-28-2025, 02:10 PM
Last Post: perfringo
  renaming a column without a name in a dataframe Carbonpony 2 744 Jan-23-2025, 08:20 AM
Last Post: Carbonpony
  Check time within specific time ranges basvdm 3 555 Jan-20-2025, 05:10 PM
Last Post: Gribouillis
  Help about a specific time selection QJZ 0 374 Dec-01-2024, 11:25 AM
Last Post: QJZ
  Install a module to a specific to Python Installation (one of many)) tester_V 2 1,749 Oct-29-2024, 03:25 PM
Last Post: snippsat
  Updating column name with translation bobbydave 0 1,028 Sep-17-2024, 03:40 PM
Last Post: bobbydave
  recurring events every specific amount of days jacksfrustration 6 1,849 Jun-27-2024, 01:13 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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