Coding and running a notebook (Watson Studio)
After you created a notebook to use in the notebook editor, you need to add libraries, code, and data so you can do your analysis.
To develop analytic applications in a notebook, follow these general steps:
-
Open the notebook in edit mode: click the edit icon (
). If the notebook is locked, you might be able to unlock and edit it. -
If the notebook is marked as being untrusted, tell the Jupyter service to trust your notebook content and allow executing all cells by:
- Clicking Not Trusted in the upper right corner of the notebook.
- Clicking Trust to execute all cells.
-
Determine if the environment template that is associated with the notebook has the correct hardware size for the anticipated analysis processing throughput.
-
Check the size of the environment by clicking the View notebook info icon (
) from the notebook toolbar and
selecting the Environments page. -
If you need to change the environment, select another one from the list or, if none fits your needs, create your own environment template. See Creating emvironment template.
If you create an environment template, you can add your own libraries to the template that are preinstalled at the time the environment is started. See Customize your environment for Python and R.
-
-
Import preinstalled libraries. See Libraries and scripts for notebooks.
-
Load and access data. You can access data from project assets by running code that is generated for you when you select the asset or programmatically by using preinstalled library functions. See Load and access data.
-
Prepare and analyze the data with the appropriate methods:
-
If necessary, schedule the notebook to run at a regular time. See Schedule a notebook job.
- Monitor the status of your job runs from the project's Jobs page.
- Click your job to open the job's details page to view the runs for your job and the status of each run. If a run failed, you can select the run and view the log tail or download the entire log file to troubleshoot the run.
-
If you have problems running your code, use the Debugger to go through a code cell in your notebook. To activate the debugger:
- Click on the Enable Debugger icon (
) in the notebook toolbar. - Click next to any line of code to add a breakpoint.
To debug your code from the View menu, select Right Sidebar, and then select Show Debugger.
- Click on the Enable Debugger icon (
-
When you're not actively working on the notebook, go to Kernel and click Shut Down Kernel to stop the notebook kernel and free up resources.
If you accidentally close your notebook browser window while the notebook is still running, or are logged out by the system if your job runs very long, the kernel will remain active. When you reopen the same notebook, the notebook is connected to the same kernel and all output cells are retained. The execution progress of a notebook can only be restored for notebooks that run in a local kernel. If your notebook runs in a Spark or Hadoop cluster, all notebook changes that were not saved before you left the notebook or closed the web browser window will be lost.
If the watsonx.ai service is installed on your cluster, you can add various sample prompts for specific models into your notebooks. To add a sample prompt, click the Code snippets icon (
), select Prompt Engineering, and browse the various categories to find a sample prompt. When you select a prompt, click Insert code to cell to insert the prompt into your notebook.
Watch this video to see how to code and run a notebook to visualize and analyze precipitation data from the UNData portal.
This video provides a visual method to learn the concepts and tasks in this documentation.
Learn more
Parent topic: Jupyter Notebook editor