Reputation: 7448
I have the following df
country street postcode id
SA XX0 1
GB 17 abc road 2
BE 129 def street 127 3
US nan nan 4
I want to calculate the entropy for values of country
, street
and postcode
; empty strings or NaN will get a value of 0.25
by default;
from entropy import shannon_entropy
vendor_fields_to_measure_entropy_on = ('country', 'vendor_name', 'town', 'postcode', 'street')
fields_to_update = tuple([key + '_entropy_val' for key in vendor_fields_to_measure_entropy_on])
for fields in zip(vendor_fields_to_measure_entropy_on, fields_to_update):
entropy_score = []
for item in df[fields[0]].values:
item_as_str = str(item)
if len(item_as_str) > 0 and item_as_str != 'NaN':
entropy_score.append(shannon_entropy(item_as_str))
else:
entropy_score.append(.25)
df[fields[1]] = entropy_score
I am wondering whats the best way to do this, so the result will look like,
country street postcode id
SA XX0 1
GB 17 abc road 2
BE 129 def street 127 3
US nan nan 4
country_entropy_val street_entropy_val postcode_entropy_val
0.125 0.25 0.11478697512328288
0.125 0.38697440929431765 0.25
0.125 0.39775073104910885 0.19812031562256
0.125 0.25 0.25
Upvotes: 1
Views: 147
Reputation: 4378
from io import StringIO
import pandas as pd
# sample data
df = pd.read_fwf(StringIO("""country street postcode id
SA XX0 1
GB 17 abc road 2
BE 129 def street 127 3
US nan nan 4
"""))
# Did not install the package so providing this as a substitute function
def shannon_entropy(x): # fake function
return(.1)
# organize into a function to simplify the apply
def calc(item):
# ensure that blank is stripped of spaces
item_as_str = str(item).strip()
# how you read the data affects the NaN - use lower here to work both ways
if len(item_as_str) > 0 and item_as_str.lower() != 'nan':
return shannon_entropy(item_as_str)
else:
return .25
# make these selectors lists, not tuples
vendor_fields_to_measure_entropy_on = ['country', 'postcode', 'street']
fields_to_update = [key + '_entropy_val' for key in vendor_fields_to_measure_entropy_on]
# applymap will apply to each cell
df2 = df[vendor_fields_to_measure_entropy_on].applymap(calc)
# fix the columns
df2.columns = fields_to_update
Result:
country_entropy_val postcode_entropy_val street_entropy_val
0 0.1 0.10 0.25
1 0.1 0.25 0.10
2 0.1 0.10 0.10
3 0.1 0.25 0.25
Upvotes: 1
Reputation: 10960
>>> fields = ['country', 'street', 'postcode']
>>> for col in fields:
... df[f'{col}_entropy'] = df[col].apply(lambda x: shannon_entropy(str(x)) if not pd.isna(x) else 0.25)
...
Upvotes: 1