I want to be able to search through my dataframe and skip cells that are blank. However, when i read in the DF it reads the blanks as “nan”
DF1
JavaScript
x
4
1
Name Address1 Street Town Postcode
2
Will nan nan London nan
3
Phil 19 Long Road nan nan
4
I want to be able to filter through Address1, Street and Town. If there is text inside of those columns I want to add a “|” at the start but if there is no text inside of the column it skips that cell and doesn’t add the “|”
Desired Result
JavaScript
1
4
1
Name Address1 Street Town Postcode
2
Will |London
3
Phil 19 |Long Road
4
Advertisement
Answer
Something like this?
JavaScript
1
4
1
import numpy as np
2
for i in ['Address1','Street','Town']:
3
df[i] = np.where(df[i].notnull(),'|' + df[i].astype(str),'')
4
Which prints:
JavaScript
1
6
1
print(df)
2
3
Name Address1 Street Town Postcode
4
0 Will |London nan
5
1 Phil |19.0 |Long Road nan
6