I have a dataframe
value 
5
5.67E+54
10
1.04E+26
My expected output is
value 
5
10000
10
10000
I would like to detect exponential value in a dataframe and replace with 10000. Thanks!
I have a dataframe
value 
5
5.67E+54
10
1.04E+26
My expected output is
value 
5
10000
10
10000
I would like to detect exponential value in a dataframe and replace with 10000. Thanks!