December 2017
Beginner to intermediate
264 pages
5h 38m
English
Word clouds are great visualizations for finding words that are most referenced in books, publications, and social media. This section will cover creating a word cloud in Tableau using BigQuery public data.
The first few steps are the same as in the preceding example:
SELECT word, SUM(word_count) word_countFROM `bigquery-public-data.samples.shakespeare`GROUP BY wordORDER BY word_count desc
The dataset ...
Read now
Unlock full access