``` df = ks.DataFrame({"Person": ['a', 'b', 'b', 'c']}) df Person 0 a 1 b 2 b 3 c df.unique() Person 2 b 3 c 0 a 1 b ```