Como plotar o gráfico entre a pontuação F1 e os parâmetros da floresta aleatória

# Split features and target into train and test sets
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1, stratify=y)
Jay Sonawane