I’m using version 0.13.0.dev0. Maybe that is why it doesn’t recognize the “coord” call or your suggested use of sel'?
When I run:
prior_checks.prior["ITEM_NUMBER"].sel(ITEM_NUMBER='100179').plot.scatter(x="ITEM_NUMBER", y="a", color="k", alpha=0.2, ax=ax)
I get:
AttributeError Traceback (most recent call last)
/tmp/ipykernel_2168/849389950.py in <module>
1 _, ax = plt.subplots()
----> 2 prior_checks.prior["ITEM_NUMBER"].sel(ITEM_NUMBER='100179').plot.scatter(x="ITEM_NUMBER", y="a", color="k", alpha=0.2, ax=ax)
3
4
5 plt.xticks(rotation=45)
AttributeError: '_PlotMethods' object has no attribute 'scatter'
` ``