Conversation

my data was too big for google sheets, so i installed and learned python. but now it's too big for my computer, python won't run it. off to buy a new computer i guess?
257
738
Replying to
Unless an expert has spent a lot of time optimizing it, odds are high that there are small tweaks to your code that will cut the memory usage by 2x or more. But if you have less than 32GB of RAM, buy the upgrade anyways.
2
64
Show replies
Replying to and
Merely using categorical types for categorical columns, instead of strings, and avoiding any columns that come in as ‘object’ instead of eg int32, due to N/A values that shouldn’t be there or can be filtered out will reduce the memory size and speed up import.
Replying to and
My guess would be that your data should no longer reside in a spreadsheet. I’d say this is a common problem for large companies also. Ask the ones that use python what they would do.