
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
코드스니펫과 강의에 있는 그대로 따라 했는데 왜 오류가 뜰까요...
제가 앞에서 뭘 빼먹은 걸까봐 이전 단계 화면도 모두 캡쳐할게요!



작성한 코드 및 에러 메세지
plt.figure(figsize=(14,5))
sns.barplot('Age_cat','Survived',data=titanic)
plt.show()
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-36-f2c59a2fb613> in <cell line: 2>()
1 plt.figure(figsize=(14,5))
----> 2 sns.barplot('Age_cat','Survived',data=titanic)
3 plt.show()
TypeError: barplot() got multiple values for argument 'data'
<Figure size 1400x500 with 0 Axes>
