KNIME logo
Contact usDownload
Read time: 5 min

Explore the Wonderful World of KNIME Widgets

A Mini Guide for Using KNIME Widget Nodes

February 3, 2022
Data transformation
20190925_KNIME_Learnathon_0137_lowres.jpg
Stacked TrianglesPanel BG

So, what is a Widget node?

Use Widget nodes in your KNIME workflows to enable interaction with your data analysis by selecting, filtering, and entering values, and by applying new settings, all in an interactive view. This works both in KNIME Analytics Platform via Component Composite Views and on the KNIME WebPortal via Data Apps. For example, below we interact with our data and select the columns we wish to render as output:

1-world-of-widgets-column_selection_refresh.gif
Fig. 1. Here, the Column Filter widget and Refresh Button Widget enable us to interact with our data via and select the columns we wish to render as output

We enabled this interaction by using two widgets:

  1. The Column Filter Widget: The Column Filter Widget allows us to interactively choose the columns we want displayed.

  2. The Refresh Button Widget: The Refresh Widget allows us to change our minds at any point and hit the yellow button to update our selection.

These are just two kinds of widget nodes available in KNIME Analytics Platform. There are more kinds to get to know!

Types of Widgets

Widget nodes come in many flavors:

  • Input widgets: input data – such as text

  • Selection widgets: select data – such as one or more variables

  • Output widgets: output data – such as an image

  • Filter widgets: filter data – such as one or more columns

  • Re-execution widget: re-execute downstream nodes – via the Refresh Button Widget

Now, let’s look at each type and give you some examples of their uses.

Input Widgets

These widgets input different parameters into a workflow. For example, below we demonstrate the Date&Time Widget, which allows you to interactively input a date to be used later.

2-world-of-widgets-input-widget.gif
Fig. 2: In this example, we used the Date&Time Widget, which allows you to interactively input a date to be used later.

Selection Widgets

These widgets select input values from a given list. For example, you can choose a specific value or values of a chosen column to filter a data table.

3-world-of-widgets-selection-widgets.gif
Fig. 3. Using selection widgets in our underlying workflow we can enable interaction – here by choosing a specific value or values of a chosen column to filter a data table.

Output Widgets

These widgets produce links to download files, or display images or text.

4-world-of-widgets-regex.png
Fig. 4: A workflow showing how the Image Output widget can be used.

Filter Widgets

These widgets trigger interactive filtered views. For example, in the graphic below, we want to focus on all data above 6 and below 18.

5-world-of-widgets-filter-widgets.gif

Re-execution Widgets in KNIME Version 4.4 and Below

The Refresh Button Widget node creates a button to re-execute downstream nodes of the workflow in a component's composite view. You can decide which workflow segments should be re-executed by where you place the node. The (re-)execution is controlled by clicking the yellow button in the view.

6-world-of-widgets-re-execute-widgets.png
Fig. 6: Clicking the yellow button refreshes the workflow segment controlled by the Refresh Button Widget node.

Note. If you’re still not sure why you would want a Refresh Button Widget node in your workflow, check out Eight Data App Designs with the New Refresh Button. It’s a great reference if you’re interested in seeing other examples of how powerful widgets can be.

Re-execution Widget in KNIME Version 4.5 and Above

What if you don’t want to click that yellow button every time you make a choice? Is there a way to automatically reload the page whenever a column or option is selected? There is in KNIME Analytics Platform version 4.5 and above!

Simply right-click the appropriate node, select “Configure” and look for the “Re-execution” tab. Select that tab and check the box next to “Re-execution on widget value change.” Here’s what that looks like:

7-world-of-widgets-re-execute-widgets.png
Fig. 8: The automatic re-execution functionality option in a Widget node.

Also note there is a small icon that appears on a widget with re-execution enabled.

8-world-of-widgets-column-filter.png
Fig. 8: The small refresh icon in the upper-right corner appears on a widget with re-execution enabled.

So does this mean the Refresh Button Widget node is deprecated in these versions? Absolutely not. You can still opt to use the node instead of checking this option.

But why would you use the node instead of this awesomely automagical reloading? Think about it: What if you have a large amount of data, and reloading each time you make a selection is too time-consuming? In that case, the node would be the simpler method by far.

Putting It All Together

We’ve just learned about the different widget types, and have seen basic examples of their use. Did you know you can use widgets to build your first data app? Read all about it in the article: Build a Data App: Create an Interactive Dashboard in Three Steps with KNIME Analytics Platform.

Now, let’s do something really challenging and novel: Let’s build a data app that makes regex interactive! You can download this workflow here for free, if you want to follow along.

What Is Regex?

Regular expressions, commonly called regex, are a series of special characters that allow us to find specific text in a document. For example, let’s say I have 10,000 documents, and I want to locate a single date somewhere in there. I know I always use the same date format: YEAR-MONTH-DAY. For example: 2021-10-1. I can therefore use this regex to extract every instance of this date from every document: [0-9]{4}-[0-9]{1,2}-[0-9]{1,2}. The following figure describes how to read each part of this regex:

8-world-of-widgets.png
Fig. 8: An explanation of what each element in this regular expression means.

For the purposes of this article, this is all the regex you will need to know. (Hooray!)

Interactive Regex Workflow

Now let’s use several different widgets to make an interactive view, one in which we can enter a regex to extract the date we need from each document.

10-world-of-widgets-workflow-output-widgets.png
Fig. 10: The interactive Regex workflow in just three nodes.

The trick with widgets is that they typically only behave the way you expect them to when you encapsulate them inside a component. This is done by selecting all nodes you want to put inside a component and then right-clicking to create that component. For more details, see KNIME Tutorial – A Friendly Introduction to Components using KNIME Analytics Platform. Let’s see what that gray node (the component) looks like on the inside:

11-world-of-widgets-workflow-output-widgets.png
Fig. 11: The contents of a component which results in interactive regex.

Note. In this figure, we are using flow variables (the red connections) to pass input parameters to other nodes.

Widgets used in the Interactive Regex Workflow

Notice that we could have used two Refresh Button Widgets (placing one before the Column Filter Widget, as we did in previous examples) to create sequential logic (i.e. user selection impacts what appears on the screen next). But because of the new re-execution functionality in KNIME Analytics Platform 4.5, we can simply check the box for automatic re-execution in the configuration window of the Column Filter Widget.

Now let’s get to the real meat of the conversation: the superstar widgets. The String Widget node allows us to enter our regex interactively, and the Refresh Button Widget allows us to make changes dynamically without going back to the workflow.

12-world-of-widgets-workflow-output-widgets.png
Fig. 12: An interactive view showing modified regex to extract year and month only.

Finally, we added a Text Output Widget which generates some fun text at the bottom of the interactive view. But you can use it for more serious things, like headers!

13-world-of-widgets-workflow-output-widgets.png
Fig. 13: Output from the Text Output Widget in an interactive view.

Widgets for more Interactivity with Your Data Analysis

On KNIME Analytics Platform and the KNIME WebPortal, use a widget node when you want to be able to interact with your data. Here we demonstrated the major types of widgets, and gave examples to demonstrate how they work. You can download a free workflow here which we have built to let you play with widget nodes.

If you are looking for further documentation, see the KNIME Components Guide and if you would like to try some more Re-execution Widget Examples you can download them from the KNIME Hub. Thanks for reading!