Managing a workbook

How to work in workspace

Maximum workbook size

Workbooks have a maximum size limit: the total size of all the files in a workspace cannot exceed 5GB for users on the Workspace Starter plan or 20GB for users on the Workspace Premium plan. This is a per-workspace limit, so free users could have 3 workspaces with 4 GB each, for example.

If the total size of all the files in a single workbooks exceeds the limit, you can no longer edit that workspace: through the file browser, you can remove files from the workspace filesystem to go below the limit again.

Saving your edits

All your edits are automatically saved. If you close and re-enter the workbook at a later point in time, all your work from before is saved. You can review and restore past versions of your notebooks through Version history.

Renaming a workbook

  1. Click on 'File > Rename workbook' in the toolbar.

  2. In the modal that appears specify the new workbook name and click "Rename Workbook".

Changing the workbook language

You can use either Python (version 3.8 or 3.10) or R (version 4.2 or 4.3) to execute code in your notebooks. The default language of your workbook is guessed based on your previous workspace. If it can't be guessed, you will be asked to specify a language.

To change the programming language yourself, click "View > Environment" and select the programming language in the dropdown. Note that this will not automatically edit/translate any code that may already exist in notebooks (e.g. we don't convert pd.read_csv() calls to readr::read_csv() when switching the language from Python to R).

Python 3.8 versus Python 3.10

Python 3.10 comes with a lot of updated pre-installed packages compared to Python 3.8. Most notably is the update of Pandas from version 1 to version 2. For a list of backwards incompatible changes, see the Pandas docs.

Deleting your workbook

If you wish to permanently delete your workbook click "File > Delete Workspace". Confirm the action.

Deleting a workbook is irreversible!

Last updated