Functions and arguments

Report a typo

Let's say you want to plot bill_length_mm and bill_depth_mm from the penguins dataset on a scatterplot. You also want to set a default theme and a color palette so that your plot would look like this:

A scatter plot with bill_length_mm as the X axis and bill_depth_mm as the Y axis

Match the functions to their arguments. Note that there's one extra function that you don't need.

Match the items from left and right columns
sb.set_style()
sb.set_palette()
sb.scatterplot()
sb.despine()
sb.pairplot()
No arguments
x='bill_length_mm', y='bill_depth_mm', data=penguins
'bright'
'white'
We don't need this function
___

Create a free account to access the full topic