I Have pandas dataframe like this. pd df
but i want to make the 'KDB' column something like this (without the index), does anyone can help me?
[9. 3. 3. 2. .....]
I tried to use pd.DataFrame.to_numpy() but what i got is something like this..
[[ 9]
[ 3]
[ 3]
[ 2]
...]