I have a following dataframe:
import pandas as pd
data = [['1044', '1924'], ['1044', '1926'], ['1044', '1927'], ['1044', '1928'], ['1048', '1924'], ['1048', '1926'], ['1048', '1927'], ['1048', '1928'], ['1051', '1924'], ['1051', '1926'], ['1051', '1927'], ['1051', '1928'], ['1058', '']]
df = pd.DataFrame(data, columns = ['Col1', 'Col2'])
I would like to reduce the dataframe as shown here:
I have no clue how to do that, but it should be working as follows:
- keep the first duplicate in the column "Date" - in this example row 0
- drop the second duplicate in the column "Value" - in this example row 3
Hopefully it does exist a easier way how to perform it.

