I having trouble running relplot
function in colab
notebook but it works fine in jupyter notebook.
Getting the following error in colab
AttributeError Traceback (most recent call last) in () ----> 1 sns.relplot(x="total_bill", y="tip", 2 col="time", # Categorical variables that will determine the faceting of the grid. 3 hue="smoker", # Grouping variable that will produce elements with different colors. 4 style="smoker", # Grouping variable that will produce elements with different styles. 5 size="size", # Grouping variable that will produce elements with different sizes.
AttributeError: module 'seaborn' has no attribute 'relplot'