简体   繁体   English

将熊猫数据框的多列转换为虚拟变量-Python

[英]Convert multiple columns of a pandas data frame to dummy variables - Python

I have this dataframe: 我有这个数据框:

在此处输入图片说明

As far as I know, to use the scikit learn package in Python for machine leaning tasks, the categorical variables should be converted to dummy variables. 据我所知,要将Python中的scikit学习包用于机器学习任务,应将分类变量转换为虚拟变量。 So, for example, using a library of scikit learn I try to convert the values of the third column to dummy values but my code didn't work: 因此,例如,使用scikit库学习如何尝试将第三列的值转换为虚拟值,但我的代码无法正常工作:

from sklearn.preprocessing import LabelEncoder

x[:, 2] = LabelEncoder().fit_transform(x[:,2])

So what's wrong with my code? 那么我的代码有什么问题呢? and How Can I convert all the categorical variables to dummy variables in my data frame? 以及如何在数据框中将所有分类变量转换为虚拟变量?

Edit: The full traceback is this : 编辑:完整的回溯是这样的:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-73-c0d726db979e> in <module>()
      1 from sklearn.preprocessing import LabelEncoder
      2 
----> 3 x[:, 2] = LabelEncoder().fit_transform(x[:,2])

C:\Users\toshiba\Anaconda\lib\site-packages\pandas\core\frame.pyc in __getitem__(self, key)
   2001             # get column
   2002             if self.columns.is_unique:
-> 2003                 return self._get_item_cache(key)
   2004 
   2005             # duplicate columns

C:\Users\toshiba\Anaconda\lib\site-packages\pandas\core\generic.pyc in _get_item_cache(self, item)
    665             return cache[item]
    666         except Exception:
--> 667             values = self._data.get(item)
    668             res = self._box_item_values(item, values)
    669             cache[item] = res

C:\Users\toshiba\Anaconda\lib\site-packages\pandas\core\internals.pyc in get(self, item)
   1653     def get(self, item):
   1654         if self.items.is_unique:
-> 1655             _, block = self._find_block(item)
   1656             return block.get(item)
   1657         else:

C:\Users\toshiba\Anaconda\lib\site-packages\pandas\core\internals.pyc in _find_block(self, item)
   1933 
   1934     def _find_block(self, item):
-> 1935         self._check_have(item)
   1936         for i, block in enumerate(self.blocks):
   1937             if item in block:

C:\Users\toshiba\Anaconda\lib\site-packages\pandas\core\internals.pyc in _check_have(self, item)
   1939 
   1940     def _check_have(self, item):
-> 1941         if item not in self.items:
   1942             raise KeyError('no item named %s' % com.pprint_thing(item))
   1943 

C:\Users\toshiba\Anaconda\lib\site-packages\pandas\core\index.pyc in __contains__(self, key)
    317 
    318     def __contains__(self, key):
--> 319         hash(key)
    320         # work around some kind of odd cython bug
    321         try:

TypeError: unhashable type

I don't think the LabelEncoder function transforms your data to dummy variables (see scikit-learn.org/LabelEncoder ) but creates new numerical labels for the variable. 我不认为LabelEncoder函数会将您的数据转换为虚拟变量(请参阅scikit-learn.org/LabelEncoder ),但会为该变量创建新的数字标签。

I use the get_dummies function from pandas to do this (see pandas.pydata.org/dummies ). 我使用pandas的get_dummies函数来执行此操作(请参阅pandas.pydata.org/dummies )。 Below a simple example. 下面是一个简单的例子。

Create a simple DataFrame with categorical and numerical data 使用分类和数值数据创建一个简单的DataFrame

import pandas as pd
X = pd.DataFrame({"Var1": ["a", "a", "b"],
                  "Var2": ["a", "b", "c"],
                  "Var3": [1, 2, 3]},
                  dtype = "category")
X["Var3"] = X["Var3"].astype(int)

Transform data to dummy variables 将数据转换为虚拟变量

pd.get_dummies(X)

Out[4]: 出[4]:

   Var3  Var1_a  Var1_b  Var2_a  Var2_b  Var2_c
0     1       1       0       1       0       0
1     2       1       0       0       1       0
2     3       0       1       0       0       1

Notice that Var1 was transformed to two dummy variables, but you might want to have all three categories [a, b, c] . 请注意, Var1已转换为两个伪变量,但您可能希望具有所有三个类别[a, b, c] You will need to add the new category. 您将需要添加新类别。

X["Var1"].cat.add_categories("c", inplace=True)

And the result: 结果:

pd.get_dummies(X)

Out[6]: 出[6]:

   Var3  Var1_a  Var1_b  Var1_c  Var2_a  Var2_b  Var2_c
0     1       1       0       0       1       0       0
1     2       1       0       0       0       1       0
2     3       0       1       0       0       0       1

Hope this helps 希望这可以帮助

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM