鱼C论坛

 找回密码
 立即注册
查看: 116|回复: 1

为什么onehot编码后列数不一样

[复制链接]
发表于 2024-10-30 16:38:44 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#对合并集的非数值型数据进行onehot编码
#nonnumerical = full_dataset.select_dtypes(include='object').columns
pd.get_dummies(full_dataset,dummy_na=True)
#df_nonnumerical
#均值归一化数值型特征
numeric_cols = full_dataset.select_dtypes(np.number).columns # Numerical column name
numeric_cols = numeric_cols.drop(['Id',"SalePrice"], errors='ignore') # Drop label
df_numerical = full_dataset[numeric_cols].apply(lambda x: (x - x.mean()) / (x.std())) # Normalize every numerical column
df_numerical = df_numerical.fillna(0) # Fill in missing value with mean 0
df_numerical.shape
full_df = pd.concat([df_nonnumerical,df_numerical],axis=1)
full_df.shape
这样出来结果是330列

但是别人的出来结果是331列
# Preprocessing function
def preprocess(df):
    df = df.copy() # Make copy so we don't ruin the original dataframe
    df = df.drop(columns=["Id"], errors='ignore') # Drop Id column
    
    numeric_cols = df.select_dtypes(np.number).columns # Numerical column name
    numeric_cols = numeric_cols.drop("SalePrice", errors='ignore') # Drop label
    categorical_cols =  df.select_dtypes(include=['object']).columns # Categorical column name
    
    df_categorical = pd.get_dummies(df[categorical_cols], dummy_na=True) # OneHotEncoding, dummy_na create another column to indicate if the cell contain NA
    
    df_numerical = df[numeric_cols].apply(lambda x: (x - x.mean()) / (x.std())) # Normalize every numerical column
    df_numerical = df_numerical.fillna(0) # Fill in missing value with mean 0
    
    df = pd.concat([df_numerical, df_categorical], axis=1) # Bind numerical column and categorical column
    
    return df
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2024-10-30 16:39:00 | 显示全部楼层
One-hot编码后列数不一致的原因可能有以下几种:

1. **缺失值处理**:`dummy_na=True`会为每个分类变量增加一个额外的列来表示缺失值。如果数据集中某些列在不同的处理过程中缺失值不同,可能导致列数不一致。

2. **数据集差异**:如果在不同的步骤中对数据集进行了不同的处理(如删除某些列或行),也可能导致最终的列数不同。

3. **编码前的数据差异**:在进行one-hot编码之前,如果对数据进行了不同的预处理(如删除某些类别或合并某些类别),也会影响最终的列数。

4. **代码中的错误**:检查代码中是否有遗漏或错误的地方,比如在`pd.concat()`时没有正确指定要合并的DataFrame。

要解决这个问题,可以逐步检查每个步骤的数据形状,确保在每个步骤中数据处理的一致性。特别是要注意在one-hot编码前后的数据形状变化。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-4 01:24

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表