Trying to get a graph where if manufacturer is GHI, need to find all the products related to GHI
man=cn[cn.manufacturer=='GHI']
plt.plot(cn.man,cn.Product_name)
ERROR
AttributeError                            Traceback (most recent call last)
<ipython-input-8-66666c2700b9> in <module>
----> 1 plt.plot(cn.man,cn.Product_name)
~\AppData\Local\Continuum\anaconda3\lib\site-packages\pandas\core\generic.py in __getattr__(self, name)
   5065             if self._info_axis._can_hold_identifiers_and_holds_name(name):
   5066                 return self[name]
-> 5067             return object.__getattribute__(self, name)
   5068 
   5069     def __setattr__(self, name, value):
AttributeError: 'DataFrame' object has no attribute 'man'