I have a single column of strings that contain alpha numeric characters as follows:
AA128A
AA128B
AA128C
AA128D
AA128E
AA129A
AA129B
AA129C
CP100-10
CP100-11
CP100-12
CP100-13
CORSTG11A
CORSTG11B
CORSTG11C
I'm wanting to explode each individual character into separate columns and convert all alpha characters into their ASCII decimal value and retain the numeric values as they are. If the value is null after exploding the values, I want to replace it with -1.
I have been able to explode the values and replace nulls, however when I attempt to iterate over the values with the ord() function to convert the alpha characters, I get the error:
ord() expected string of length 1, but int found
Even if I create conditional analysis on the datatype within a for loop.
import numpy as np
import pandas as pd
from sklearn.preprocessing import OrdinalEncoder
from pandas.api.types import is_string_dtype
from pandas.api.types import is_numeric_dtype
loc_df = pd.read_csv('C:\\path\\to\\file.csv',index_col=False)
# new data frame with split value columns
explode_df = loc_df["stoloc"].apply(lambda x: pd.Series(list(x)))
explode_df = explode_df.fillna(-1)
#Convert alpha characters to numeric
for char in explode_df:
if is_string_dtype(explode_df[char]):
explode_df_numeric[char] = ord(char)
else:
explode_df_numeric[char] = char
source https://stackoverflow.com/questions/70453457/convert-all-alpha-characters-of-string-to-integers-in-separate-columns-within-a
Comments
Post a Comment