pandas-ml is a package which integrates pandas, scikit-learn, xgboost into one package for easy handling of data and creation of machine learning models.
Questions tagged [pandas-ml]
5 questions
6
votes
2 answers
Is pandas_ml broken?
The version info and issue are as given below. I want to know if pandas_ml is broken or am I doing something wrong. Why am I not able to import pandas_ml?
Basic info:
Versions of sklearn and pandas_ml and python are given below:
Python …

Aviral Bansal
- 413
- 6
- 13
4
votes
3 answers
AttributeError: module 'pandas.compat' has no attribute 'iteritems'
I am trying to import pandas-ml but I get this import error.
What might be the issue?
---------------------------------------------------------------------------
AttributeError Traceback (most recent call…

kongkip
- 61
- 1
- 7
4
votes
1 answer
pandas_ml change confusion matrix image size
How can the size of a pandas_ml confusion matrix image with lots of classes be increased so the labels are clearly visible?
Such an image can be generated in Jupyter like this:
import pandas as pd
from pandas_ml import ConfusionMatrix
import…

user1717828
- 7,122
- 8
- 34
- 59
0
votes
0 answers
True Positive value difference in confusion matrix
To assess accuracy for LULCC, I have used the confusion matrix from pandas_ml. However, the statistic report has made me confused. The actual vs Predicted matrix indicates 20 (points) for LSAgri class but TP value is 57 for LSAgri. Shouldn't these…

Ann Ghazali
- 1
- 1
0
votes
1 answer
How to change color of confusion matrix in pandas_ml
I'm plotting a confusion matrix using the pandas_ml package in python 2.7
with the following code
cm = ConfusionMatrix(true, pred)
cm.plot( normalized=True)
How can I specify a color scheme?

bbrodrigues
- 115
- 8