the plot is horizontal without values I tried this code
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
g = sns.barplot(
x="score",
y="subject",
hue="pipeline",
#col="dataset",
data=results,
palette="viridis",
)
I tried this for values
ax = g.axes[0, 0]
ax.bar_label(ax.containers[0])
I had this error 'AxesSubplot' object is not subscriptable