I am having trouble extracting a numeric value from a pandas DF column. I have a data frame converted from Json and it contains column values like Image "1";
As you can imagine the thing I need is unix timestamp values from this 'dict'. While type of this spesific column is pandas.core.series.Series, values are listed as 'dict'. I am looking for a more general approach to this problem since I also have other columns formated this way like Image2 ;
So far I tried numerous .read commands with spesific delimeters. I tried casting dict into other formats, converting df part to a list and many other things I cant even recall.
Thank you in advance. Have a good day.