我一直试图(get_dummies)泰坦尼克号数据集中的特定列,但它抛出错误。我该怎么做。
df= pd.read_excel(r"G:\AC\Cases\Cases\titanic.xls")
df.head()
pd.get_dummies(df, prefix=['sex']) <-- Error(Length of 'prefix' (1) did not match the length of the columns being encoded (0).)
P.S:我是Stack Overflow的新手。