Reputation: 637
The error is shown in the image.
It is shown that the cells have been executed consecutively. Where is the error?
If I call pandas directly it functions ok.
Upvotes: 0
Views: 149
Reputation: 300
You imported pandas in a function which is sent to garbage when function is over.
Try importing outside the function
Upvotes: 4