0
0
Tableaubi_tool~10 mins

Mark types (automatic, bar, line, circle) 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 set the mark type to a bar chart in Tableau.

Tableau
worksheet.mark_type = '[1]'
Drag options to blanks, or click blank then click option'
Abar
Bline
Ccircle
Dautomatic
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'line' instead of 'bar' for bar charts.
Using 'circle' which creates scatter plots.
2fill in blank
medium

Complete the code to set the mark type to a line chart in Tableau.

Tableau
worksheet.mark_type = '[1]'
Drag options to blanks, or click blank then click option'
Acircle
Bautomatic
Cbar
Dline
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting 'circle' which creates scatter plots.
Choosing 'bar' which creates bar charts.
3fill in blank
hard

Fix the error in the code to set the mark type to circle in Tableau.

Tableau
worksheet.mark_type = '[1]'
Drag options to blanks, or click blank then click option'
Acircle
Bline
Cbar
Dautomatic
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'bar' or 'line' which create different chart types.
Using 'automatic' which lets Tableau decide the mark type.
4fill in blank
hard

Fill both blanks to set the mark type to automatic and then to bar in Tableau.

Tableau
worksheet.mark_type = '[1]'
worksheet.mark_type = '[2]'
Drag options to blanks, or click blank then click option'
Aautomatic
Bbar
Cline
Dcircle
Attempts:
3 left
💡 Hint
Common Mistakes
Reversing the order of mark types.
Using 'circle' or 'line' instead of 'bar' for the second mark type.
5fill in blank
hard

Fill all three blanks to set the mark type to circle, then line, then bar in Tableau.

Tableau
worksheet.mark_type = '[1]'
worksheet.mark_type = '[2]'
worksheet.mark_type = '[3]'
Drag options to blanks, or click blank then click option'
Acircle
Bline
Cbar
Dautomatic
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the order of mark types.
Using 'automatic' instead of specific mark types.