Get started with your EDA now by exploring this voting records dataset numerically. It has been pre-loaded for you into a DataFrame called?df. Use pandas'?.head(),?.info(), and?.describe()?methods in the IPython Shell to explore the DataFrame, and select the statement below that is?not?true.
plt.figure()
... ... sns.countplot(x='satellite',hue='party',data=df,palette='RdBu')
... ... plt.xticks([0,1],['No','Yes'])
... ... plt.show()