I just want to use the melt function in pandas, and I just keep getting the same error.
Just enter the example provided by the documentation:
cheese = pd.DataFrame({'first' : ['John', 'Mary'], 'last' : ['Doe', 'Bo'], 'height' : [5.5, 6.0], 'weight' : [130, 150]})
I just get the error message:
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-119-dc0a0b96cf46> in <module>() ----> 1 cheese.melt(id_vars=['first', 'last']) C:\Anaconda2\lib\site-packages\pandas\core\generic.pyc in __getattr__(self, name) 2670 if name in self._info_axis: 2671 return self[name] -> 2672 return object.__getattribute__(self, name) 2673 2674 def __setattr__(self, name, value): AttributeError: 'DataFrame' object has no attribute 'melt'`
source share