Concept | Code samples#

Watch the video

In this lesson, we’ll take a look at some common ways you can create and use code samples, including:

  • In notebooks and code recipes.

  • In the Lab.

  • In a webapp.

Dataiku provides code samples that are available to all projects on the same instance. Code samples are “starter” code–snippets that illustrate the steps to perform a specific task and help developers get started.

Slide presenting concept of code samples in Dataiku.

Notebooks#

Each type of notebook in Dataiku allows you to use and add code samples. For example, in a Jupyter notebook, you can click Code Samples to start searching the code snippets available on your Dataiku instance.

Let’s say you want to find code samples that you can use to merge Pandas DataFrames. To do this, search for``dataframe`` to view results where this term is either part of the title or description.

You can also search by tag. For example, you can select the tags, “Pandas”, “Combine”, and “Dataframe”, to help narrow down your search results.

../../_images/code-samples-notebook.png

Dataiku displays the code sample, including any variations, along with its documentation.

Once you insert this code, it becomes part of your script.

Adding a code sample#

You can add code samples wherever code samples are found. For example, you can add a new code sample in the code samples of your notebook.

To do this, click + Add Your Own, then type a descriptive title and description (both are searchable). Then, apply tags to make it even more discoverable by others. The default option is “share with other users”.

You can add additional information that might help others understand the purpose and usage of your code snippet.

Then, finally, add the core code of your code sample including any variants.

../../_images/code-sample-create-your-own.png

Code variants make sense when it isn’t possible to create a single code snippet that covers all use cases.

Dataiku makes your code sample immediately available to all users on the same instance.

Code recipes#

In code recipes, you can find Code Samples by visiting the Code tab of the recipe.

Code samples work much the same way as in your notebook. For example, you can enter a search term and apply tags to narrow down the search. You can then select to insert the snippet into your code.

Visual machine learning in the lab#

Visual Machine Learning in the Lab is another place you can use and create code samples.

../../_images/code-samples-the-lab.png

Custom algorithms#

Let’s start by looking at custom algorithms.

When designing your machine learning model, you can select to add a custom Python model in the Custom Python model window. From there, you can add a custom Python model code sample.

../../_images/code-sample-custom-model.png

Custom model metrics#

In visual ML, you can also define your own Custom Model Metrics.

Once defined, Dataiku will use this custom metric to decide which model is best. In other words, it is the metric for which the model hyperparameters will be optimized.

Although there are no default code samples for custom metrics, you can create your own that will be available to you and your team.

When creating custom model metrics, Dataiku gives you access to predefined functions that you can configure, such as “Lift” and “Cost matrix”.

../../_images/code-sample-custom-metric.png

Custom preprocessing of text features#

Another way to use code samples in your visual analysis is custom preprocessing of text features.

When handling a text feature, you can select custom preprocessing. Then, you can write your own code to handle the preprocessing of the values in this text column.

One requirement is that your code must create a “processor” object that will be responsible for processing the data.

Once your custom processing code is defined, you will have the ability to save it as a code sample.

../../_images/code-sample-custom-preprocessing.png

Webapps#

Finally, let’s look at webapps.

Code samples make it easier to reproduce a webapp from one project to another.

You can use code samples when working with Bokeh, Shiny, and standard webapps.

Code Samples are found in the Edit mode of the webapp.

For example, you could insert a code sample that can be used to “Add a Button”.

../../_images/code-samples-webabbs.png

What’s next?#

Check out the other lessons included in this course!

You might also be interested in visiting Code in Dataiku where you can learn more about code notebooks and recipes, or Custom ML Models where you’ll learn more about custom preprocessing and custom modeling using visual ML.