Skip to content

Tag: google-colaboratory

Save failed in Google Colab

I opened a number of tabs at the same time. I think that’s why Google Colab was not able to support the heavy load. The message stated: Save failed This file could not be saved. Please use the File menu to download the .ipynb and upload the notebook to make a copy that includes your recent changes. Is d…

How to see complete rows in Google Colab

I am using Google Colab python 3.x and I have a Dataframe as below. I would like to see all cells on each row and column. How can I do this? I tried pd.set_option(‘display.max_columns’, 3000) but it didn’t work. Answer use pd.set_option(‘max_colwidth’, <width>) for column w…