I am trying to do something very similar to that previous question but I meet error. I have a pandas dataframe containing features and label I need to do some convertion to send the features and the label variable into a machine learning object:

import pandas
import milk
from scikits.statsmodels.tools import categorical

then I have:

trainedData=bigdata[bigdata['meta']<15]
untrained=bigdata[bigdata['meta']>=15]
#print trainedData
#extract two columns from trainedData
#convert to numpy array
features=trainedData.ix[:,['ratio','area']].as_matrix(['ratio','area'])
un_features=untrained.ix[:,['ratio','area']].as_matrix(['ratio','area'])
print 'features'
print features[:5]
##label is a string:single, touching,nuclei,dust
print 'labels'

labels=trainedData.ix[:,['type']].as_matrix(['type'])
print labels[:5]
#convert single to 0, touching to 1, nuclei to 2, dusts to 3
#
tmp=categorical(labels,drop=True)
targets=categorical(labels,drop=True).argmax(1)
print targets

The output console yields first:

features
[[ 0.38846334  0.97681855]
[ 3.8318634   0.5724734 ]
[ 0.67710876  1.01816444]
[ 1.12024943  0.91508699]
[ 7.51749674  1.00156707]]
labels
[[single]
[touching]
[single]
[single]
[nuclei]]

I meet then the following error:

Traceback (most recent call last):
File "/home/claire/Applications/ProjetPython/projet particule et objet/karyotyper/DAPI-Trainer02-MILK.py", line 83, in <module>
tmp=categorical(labels,drop=True)
File "/usr/local/lib/python2.6/dist-packages/scikits.statsmodels-0.3.0rc1-py2.6.egg/scikits/statsmodels/tools/tools.py", line 206, in categorical
tmp_dummy = (tmp_arr[:,None]==data).astype(float)
AttributeError: 'bool' object has no attribute 'astype'

Is it possible to convert the category variable 'type' within the dataframe into int ? 'type' can take the values 'single', 'touching','nuclei','dusts' and I need to convert with int values such 0, 1, 2, 3.

Thanks for advices.

Jean-Patrick

link|improve this question

29% accept rate
feedback

2 Answers

up vote 2 down vote accepted

If you have a vector of strings or other objects and you want to give it categorical labels, you can use the Factor class (available in the pandas namespace):

In [1]: s = Series(['single', 'touching', 'nuclei', 'dusts', 'touching', 'single', 'nuclei'])

In [2]: s
Out[2]: 
0    single
1    touching
2    nuclei
3    dusts
4    touching
5    single
6    nuclei
Name: None, Length: 7

In [4]: Factor(s)
Out[4]: 
Factor:
array([single, touching, nuclei, dusts, touching, single, nuclei], dtype=object)
Levels (4): [dusts nuclei single touching]

The factor has attributes labels and levels:

In [7]: f = Factor(s)

In [8]: f.labels
Out[8]: array([2, 3, 1, 0, 3, 2, 1], dtype=int32)

In [9]: f.levels
Out[9]: Index([dusts, nuclei, single, touching], dtype=object)

This is intended for 1D vectors so not sure if it can be instantly applied to your problem, but have a look.

BTW I recommend that you ask these questions on the statsmodels and / or scikit-learn mailing list since most of us are not frequent SO users.

link|improve this answer
feedback

You can create a ordered list and get index using list.index or may be just create a mapping of type and index e.g.

labels =  {'single':0, 'touching':1, 'nuclei':2, 'dusts':3}

alist = [ ['dusts', 'touching'], ['single', 'nuclei'] ]
for l in alist:
    for i, v in enumerate(l):
        l[i] = labels[v]

print alist

or

labels =  ['single', 'touching','nuclei','dusts']

alist = [ ['dusts', 'touching'], ['single', 'nuclei'] ]
for l in alist:
    for i, v in enumerate(l):
        l[i] = labels.index(v)

print alist

output:

[[3, 1], [0, 2]]
link|improve this answer
Thank you for the dictionary with a loop. The use of methods may be more efficient but require more knowledge... – Jean-Pat Oct 19 '11 at 7:38
I am afraid that labels hasn't the good shape for further use.Here I get: print labels.shape shape (205, 1) where I need: shape (205,) I have labels : – Jean-Pat Oct 19 '11 at 10:08
continued: I am afraid that labels hasn't the good shape for further use.Here I get: print labels.shape shape (205, 1) where I need: shape (205,) I have labels : [[0] [1] [0] [0] [2]] and I need an array like that: array([0, 1, 0, 0, 2]) – Jean-Pat Oct 19 '11 at 10:13
I'd like to reproduce the example from MILK – Jean-Pat Oct 19 '11 at 10:20
@Jean-Pat i don't know about milk, but from your question it looked like it can be easily done in plain python, even if you want to convert [[0] [1] [0] [0] [2]] to [0, 1, 0, 0, 2], that can also be easily done in python, or I am missing something? – Anurag Uniyal Oct 19 '11 at 13:55
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.