📌  相关文章
📜  为 pandas 数据框中的列获取假人 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:24.786000             🧑  作者: Mango

代码示例1
note:
dummies = pd.get_dummies(df[['column_1']], drop_first=True)

note:for more that one coloum keep ading in the list 
dummies = pd.get_dummies(df[['column_1', 'column_2','column_3']], drop_first=True)