Understanding How to Save and Restore a Session

Save the current studio Notebook session at any point in time and restore it later when you log in again. These functions do not require any input parameters.

1.     Save: save the current status of the Notebook session before logging out. You must start entering details from the beginning of the Notebook if you do not save at regular intervals.

 

%python

 

print( "Non Behavioral Data Dimension  : ", NB_PDF.shape)

 

z.show( NB_PDF.head() )

 

2.     Restore: restore the status of the saved Notebook session after login. 

 

%python

 

print( "Non Behavioral Data Dimension  : ", NB_PDF.shape)

 

z.show( NB_PDF.head() )

 

 

NOTE

For multiple save session calls, only the last saved session is restored.