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
You can try this by using the bar chart from pandas. If you want the plot horizontal use .barh If you provide a snippet from your df it would be easier to fit the data, though. If you want to use a hue you can just pivot your data to the right format.