I have this dataframe df
:
C S
F 7.6
O 8
T 9
I want to convert it to a numeric vector
like this. Not wide format
F O T
7.6 8 9
I want to check with class(df)
after and see numeric
How can I do that?