I want to create a column in the existing dataframe with values as ‘Top’ and Bottom’, catch is, size of the dataframe changes according to calculations.
For example:
JavaScript
x
6
1
if dataframe has 4 rows then:
2
Top - Row1
3
Bottom - Row2
4
Top - Row3
5
Bottom - Row4
6
I will always have even number of rows.
Please suggest a solution, thanks!
Advertisement
Answer
I don’t know exactly how your data is, but you can try something like this:
Hypothetical data:
JavaScript
1
3
1
data = {'A':['12345','12345','67890','12345', '', '12345']}
2
df = pd.DataFrame(data)
3
Creating the new column
JavaScript
1
10
10
1
df['B']= ['Top' if i%2==0 else 'Bottom' for i,_ in df.iterrows() ]
2
df
3
4
A B
5
0 12345 Top
6
1 12345 Bottom
7
2 67890 Top
8
3 12345 Bottom
9
4 12345 Top
10