I want to make my trees simpler, wondering to plot trees without showing samples (e.g. 83) and values (e.g.[34,53,29,26])? (I don't want the last two lines)

Here is a part of the current code of plotting trees.
X = df.iloc[:,0: -1]
y = df.iloc[:,-1]
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, stratify=y)
clf = RandomForestClassifier()
clf.fit(X_train,y_train)
.
.
.
.
# Here, I guess I need to add some commands.
plot_tree(clf.estimators_[5],
feature_names=X.columns,
class_names=names,
filled=True,
impurity=True,
rounded=True,
max_depth = 3)
