I have a table of IP addresses.
Through the Dropna () function I deleted Null elements.
I also removed repetitions and frequent addresses.
dt4new1 = dt4new.where("not (src = '0.0.0.0') and not (dst = '0.0.0.0') ").where("not (src = '127.0.0.1') and not (dst = '127.0.0.1') ").where("not (src = dst) ").where("not (src = '1')")
Now I have a table with pretty random names. How can I get rid of them?