0
0
Tableaubi_tool~10 mins

Clustering in Tableau - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a cluster using Tableau's built-in clustering feature.

Tableau
CREATE CLUSTER [1] ON Sales, Profit
Drag options to blanks, or click blank then click option'
Agroup
Bcluster1
Cmy_cluster
Dsegment
Attempts:
3 left
💡 Hint
Common Mistakes
Using reserved words like 'group' or 'segment' as cluster names.
Using names with spaces or special characters.
2fill in blank
medium

Complete the code to specify the number of clusters in Tableau.

Tableau
CREATE CLUSTER cluster1 WITH [1] = 3 ON Sales, Profit
Drag options to blanks, or click blank then click option'
Anum_clusters
Bk
Cclusters
Dcount
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'k' which is common in other tools but not Tableau.
Using 'count' which is unrelated.
3fill in blank
hard

Fix the error in the code to correctly create clusters in Tableau.

Tableau
CREATE CLUSTER cluster1 WITH num_clusters = [1] ON Sales, Profit
Drag options to blanks, or click blank then click option'
A3.0
Bthree
C'3'
D3
Attempts:
3 left
💡 Hint
Common Mistakes
Using a string instead of a number.
Using a float instead of an integer.
4fill in blank
hard

Fill both blanks to create a cluster and specify the fields to cluster on.

Tableau
CREATE CLUSTER [1] WITH num_clusters = 4 ON [2]
Drag options to blanks, or click blank then click option'
AclusterA
BclusterB
CSales, Profit
DQuantity, Discount
Attempts:
3 left
💡 Hint
Common Mistakes
Using invalid cluster names.
Choosing unrelated fields for clustering.
5fill in blank
hard

Fill all three blanks to create a cluster, specify number of clusters, and fields.

Tableau
CREATE CLUSTER [1] WITH [2] = [3] ON Sales, Profit
Drag options to blanks, or click blank then click option'
AclusterX
Bnum_clusters
C5
Dk
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'k' instead of 'num_clusters'.
Using a string for the number of clusters.