I have CSV data from titanic machine learning for disaster website:
https://www.kaggle.com/c/titanic/data
CSV files named train and test are available.
train.csv has the column 'Survived'. I need to do a countplot for this column and give 'hue' arguments as below:
sns.countplot(x='Survived', data=train, hue='Sex', hue='Pclass')
Here I could add only one option for hue. Is there any possibility to add more options to hue argument. If so, How can I add