PyCharm hanging for a long time in iPython console with big data

前端 未结 5 1560
难免孤独
难免孤独 2021-02-03 20:26

I\'ve seen some reports PyCharm is slow but I\'m having an issue that seems that\'s too slow even compared to normal operation.

I have a big set of data in a pandas data

5条回答
  •  执念已碎
    2021-02-03 21:07

    Depending on how much you handle the data could hit memory limits. Ipython remembers each In []: and Out []:.

    In is a list that is appended to for each think you input. Out is another list that gets appended to.

    So if you have a very large array you are working with in In or Out You will get several copies of the array.

提交回复
热议问题