Python Forum
concat 3 columns of dataframe to one column
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
concat 3 columns of dataframe to one column
#1
Hi,
I've got a dataframe with 100 rows and 3 columns (please see attachment).

How can I concate the 3 columns to one column?

Per example the 3 elements of the first row (255 255 255) should be 1 element (255255255) and so on.

1
2
3
4
5
6
7
8
9
10
11
12
import numpy as np
import pandas as pd
from PIL import Image
 
colorImage = Image.open("p2.bmp")
colorPixels = colorImage.convert('RGB')
# Make into array
colorArray = np.array(colorPixels.getdata())
df = pd.DataFrame(colorArray)
print(df)
df2 = pd.concat(df["0"], df["1"], df["2"])
print(df2)
Thanks a lot for your help!!

Attached Files

Thumbnail(s)
   
Reply
#2
You cannot put a list, array or tuple in a DataFrame column. Do you want to convert to a string?
1
2
3
4
5
6
7
8
import numpy as np
import pandas as pd
from PIL import Image
 
colorImage = Image.open("test.png").convert("RGB")
colorArray = np.array([f"({r:03}{g:03}{b:03})" for r, g, b in colorImage.getdata()])
df = pd.DataFrame(colorArray)
print(df)
Output:
0 0 (034177076) 1 (237028036) 2 (237028036) . . .
I don't see any value in that, but maybe there is for you.

Are you trying to get a 24 bit color number, or color string?
1
2
3
4
5
6
7
8
9
10
11
12
import numpy as np
import pandas as pd
from PIL import Image
 
colorImage = Image.open("test.png").convert("RGB")
df = pd.DataFrame(np.array(colorImage.getdata()), columns=["R", "G", "B"])
df["24bit"] = df["R"] * 65536 + df["G"] * 256 + df["B"]
df["Red"] = df["R"].apply(hex)
df["Green"] = df["G"].apply(hex)
df["Blue"] = df["B"].apply(hex)
df["RGB"] = df["24bit"].apply(hex)
print(df)
Output:
R G B 24bit Red Green Blue RGB 0 34 177 76 2273612 0x22 0xb1 0x4c 0x22b14c 1 237 28 36 15539236 0xed 0x1c 0x24 0xed1c24 2 237 28 36 15539236 0xed 0x1c 0x24 0xed1c24
If you're only using pandas to try to make a 24bit pixel you can do that in numpy.
1
2
3
4
5
6
import numpy as np
from PIL import Image
 
rgb = np.array(Image.open("test.png").convert("RGB").getdata())
b24 = np.apply_along_axis(lambda p: p[0] * 65536 + p[1] * 256 + p[2], 1, rgb)
print([hex(pixel) for pixel in b24])
Output:
['0x22b14c', '0xed1c24', '0xed1c24', '0xed1c24', '0xed1c24', '0xed1c24', '0xed1c24', '0xed1c24',...
Or if you just one those goofy strings from the first example, you don't need pandas or numpy.
1
2
3
4
5
6
7
from PIL import Image
 
b24 = [
    f"({r:03}{g:03}{b:03})"
    for r, g, b in Image.open("test.png").convert("RGB").getdata()
]
print(b24)
Output:
['(034177076)', '(237028036)', '(237028036)', '(237028036)', '(237028036)', '(237028036)',...
Reply
#3
Hi,

Thanks a lot for your answer!

I will describe in detail what I want to achieve tomorrow.

Greetings...
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Find duplicates in a pandas dataframe list column on other rows Calab 2 1,878 Sep-18-2024, 07:38 PM
Last Post: Calab
  Find strings by index from a list of indexes in a different Pandas dataframe column Calab 3 1,527 Aug-26-2024, 04:52 PM
Last Post: Calab
  Create new column in dataframe Scott 10 3,306 Jun-30-2024, 10:18 PM
Last Post: Scott
  attempt to split values from within a dataframe column mbrown009 9 5,680 Jun-20-2024, 07:59 PM
Last Post: AdamHensley
  Putting column name to dataframe, can't work. jonah88888 2 3,199 Jun-18-2024, 09:19 PM
Last Post: AdamHensley
  How to add columns to polars dataframe sayyedkamran 1 3,071 Nov-03-2023, 03:01 PM
Last Post: gulshan212
  HTML Decoder pandas dataframe column mbrown009 3 2,549 Sep-29-2023, 05:56 PM
Last Post: deanhystad
  New Dataframe Column Based on Several Conditions nb1214 1 2,470 Nov-16-2021, 10:52 PM
Last Post: jefsummers
  Setting the x-axis to a specific column in a dataframe devansing 0 2,595 May-23-2021, 12:11 AM
Last Post: devansing
  Convert several columns to int in dataframe Krayna 2 3,219 May-21-2021, 08:55 AM
Last Post: Krayna

Forum Jump:

User Panel Messages

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