sns.violinplot(x='island', y='flipper_length_mm', data=p[p.sex=='MALE']);
This line of code was used in Week 11 for data visualization. (data p being penguins dataset) and the output was shown in video. However now when I tried the same code, I get an error saying
ValueError: min() arg is an empty sequence
Kindly help me with how to rectify this. Thanks!