Display() in Python

后端 未结 2 1176
天命终不由人
天命终不由人 2021-02-18 18:37

I\'m trying to get my data head to display but I get an error message: NameError: name \'display\' undefined

import pandas as pd
data = pd.Data         


        
2条回答
  •  北海茫月
    2021-02-18 19:22

    To solve the problem on pycaret, you have to open the below file -

    ..\env\Lib\site-packages\pycaret\datasets.py
    

    and add the line of code -

    from IPython.display import display
    

提交回复
热议问题