I have a dataframe which looks like:
time feature_1 feature_2 feature_3
02.07.2019 00:00 0.1 0.1 0.7
02.07.2019 00:15 0.2 0.4 0.6
02.07.2019 00:30 0.3 0.5 0.7
I want to convert it to
time feature value
02.07.2019 00:00 feature_1 0.1
02.07.2019 00:00 feature_2 0.1
02.07.2019 00:00 feature_3 0.7
....
I tried df.melt command but not given any results