-4

enter image description here

why am i getting this error? code : sns.catplot(data = data, x = data['Type of property'],y=data['Price'])

Tanay
  • 1
  • 2

1 Answers1

1

Try:

sns.catplot(x='Type of property', y='Price',data=data)
guin0x
  • 337
  • 2
  • 10