You can further explore data by creating a filtering widget. For example, you could use the CREATE WIDGET DROPDOWN query as shown:
%sql
CREATE WIDGET DROPDOWN tytleType DEFAULT "movie" CHOICES SELECT DISTINCT titleType FROM imdbTitles
Creating a widget allows you to create a data query that can be easily segmented, as shown in the following code:
%sql
select * from imdbTitles where titleType = getArgument("tytleType")
Other widget types, such as text, combo box, and multi-select, also are available.