I'm trying to get the column of a Dataframe as Series.
df['a']
returns allways a pl.Dataframe. Right now I'm doing it this way
pl.Series('GID_1',df['GID_1'].to_numpy().flatten().tolist())
I don't think that's the best way to do it. Does anyone have an idea?