[tune] Get top 10 dataframes

Hello,

Using Analysis object we are able to retrieve best config and trials_dataframe. Is there any quick way to retrieve the best 10 dataframe of a specific experiment.

Thank you in advance

My fault this is extremely easy with Analysis.dataframe() which I didn’t noticed.

analysis.dataframe().sort_values('accuracy', ascending=False).head(10)