I have a dataframe:
ID Name Value
1 John 44
1 44
2 Mike 235
3 Fred 32
4 Lena 11
4 Lena
I want to keep only those rows with full columns. So desired result is:
ID Name Value
1 John 44
2 Mike 235
3 Fred 32
4 Lena 11