Multiple Choices
(Choose 1 answer)
Which of the choices below will create the following regression line plot, given a pandas dataframe, data_df?
A. import seaborn as sns ax = sns.regplot(x="year", y="total", color="green", marker="+")
B. import seaborn as sns ax = sns.regplot(x="year", y="total", data=data_df, color="green", marker="%")
C. import seaborn as sns ax = sns.regplot(x="year", y="total", data=data_df, color="green", marker="*")
D. import seaborn as sns ax = sns.regplot(x="year", y="total", data=data_df, color="green", marker="+")