How do I take data frame, like the following:
col1 col2
row0 abc 3
row1 bcd 2.4
And produce a dataframe with new column which value based on col2, is number has dot in it or not, like the following:
col1 col2 col3
row0 abc 3 No dot
row1 bcd 2.4 Has dot
Any help is appreciated.