Finding Shakespeare’s Favourite Words With Data Explorer
The more I play with Data Explorer, the more I think my initial assessment of it as a self-service ETL tool was wrong. As Jamie pointed out recently, it’s really the M language with a GUI on top of it and the GUI itself, while good, doesn’t begin to expose the power of the underlying language: I’d urge you to take a look at the Formula Language Specification and Library Specification documents which can be downloaded from here to see for yourself. So while it can certainly be used for self-service ETL it can do much, much more than that…
In this post I’ll show you an example of what Data Explorer can do once you go beyond the UI. Starting off with a text file containing the complete works of William Shakespeare (which can be downloaded from here – it’s strange to think that it’s just a 5.3 MB text file) I’m going to find the top 100 most frequently used words and display them in a table in Excel.
Before I do that, though, some things to point out. First, there’s a new update of Data Explorer that appeared a few days ago – the Data Explorer team blog has the details. One of the new bits of functionality is a button that allows you to edit all of the expressions in your query at once:
Second, when you’re building a query, when you want to add a new step manually that refers to the previous step but doesn’t apply any calculations or transforms, you need to click on the fx button next to the expression on an existing step:
I’ve used this quite extensively to write custom steps that aren’t possible with the UI.
Here is the full code for my query to find the top 100 words:
Source = Lines.FromBinary(File.Contents("C:\Users\Chris\Documents\CompleteShakespeare.txt")),
RemoveLineBreaks = Lines.ToText(Source, " "),
RemovePunctuation =
Text.Remove(RemoveLineBreaks,{"," ,"." ,"?" ,";" ,":" ,";" ,"'"
,"@" ,"#" ,"~" ,"{" ,"[" ,"}" ,"]" ,"(" ,")", "*"}),
Lowercase = Text.Lower(RemovePunctuation),
TurnIntoTable = Table.FromValue(Lowercase),
SplitIntoWords = Table.TransformColumns(TurnIntoTable, {"Value", Splitter.SplitTextByWhitespace()}),
ListOfWords = SplitIntoWords{0}[Value],
TableFromList = Table.FromList(ListOfWords, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
RenameColumnToWord = Table.RenameColumns(TableFromList,{{"Column1", "Word"}}),
RemoveBlanks = Table.SelectRows(RenameColumnToWord, each ([Word] <;> "")),
FindWordCounts = Table.Group(RemoveBlanks, {"Word"}, {{"Count", each Table.RowCount(_), type number}}),
SortedRows = Table.Sort(FindWordCounts,{{"Count", Order.Descending}}),
KeptFirstRows = Table.FirstN(SortedRows,100)
Broken down step-by-step:
Source = Lines.FromBinary(File.Contents("C:\Users\Chris\Documents\CompleteShakespeare.txt"))
This loads the contents of CompleteShakespeare.txt into Data Explorer and breaks it up into lines of text:
RemoveLineBreaks = Lines.ToText(Source, " ")
This removes all the line breaks and creates a single chunk of text:
RemovePunctuation = Text.Remove(RemoveLineBreaks,{"," ,"." ,"?" ,";" ,":" ,";" ,"’" ,"@" ,"#" ,"~" ,"{" ,"[" ,"}" ,"]" ,"(" ,")", "*"})
Removes any punctuation, and
Lowercase = Text.Lower(RemovePunctuation)
Turns all the words to lowercase:
TurnIntoTable = Table.FromValue(Lowercase)
Takes the text and creates a table with one column and one row containing the text:
SplitIntoWords = Table.TransformColumns(TurnIntoTable, {"Value", Splitter.SplitTextByWhitespace()})
Takes the text and creates a List object with one entry for every word in the text.
ListOfWords = SplitIntoWords{0}[Value]
TableFromList = Table.FromList(ListOfWords, Splitter.SplitByNothing(), null, null, ExtraValues.Error)
RenameColumnToWord = Table.RenameColumns(TableFromList,{{"Column1", "Word"}})
Takes the list and turns it into a table with one column and one row for each word:
RemoveBlanks = Table.SelectRows(RenameColumnToWord, each ([Word] <> ""))
Removes any rows containing blanks.
FindWordCounts = Table.Group(RemoveBlanks, {"Word"}, {{"Count", each Table.RowCount(_), type number}})
Does a ‘group by’ to return a table with one row for each distinct word, and a column containing the number of occurrences of that word:
SortedRows = Table.Sort(FindWordCounts,{{"Count", Order.Descending}})
Sorts this table in descending order by word count.
KeptFirstRows = Table.FirstN(SortedRows,100)
Only returns the first 100 rows from this table.
And at this point, we have the top 100 words used by Shakespeare (admittedly including the text at the beginning and end of the file inserted by Project Gutenberg that I couldn’t be bothered to remove):
No surprises here really – ‘the’ comes in at #1 with 18444 occurrences, “lord” comes in at #45, “king” at #69 and so on.
While you probably aren’t interested in Shakespeare for your own business purposes, it shows what would be possible if you wanted to analyse what was being said in Facebook updates, Tweets, product reviews and so on. It wasn’t all that hard to write either, especially considering that I’m fairly new to Data Explorer, so more sophisticated variations on this would certainly be possible without much extra effort. And it’s worth pointing out that it’s fast too: it takes a couple of seconds to refresh, and I’m not even sure I’ve done everything in the most efficient way possible.
You can download the sample workbook (but not the Complete Works of Shakespeare) here. If you want to point it at a different text file, just modify the first line of the code.

Very nice! I did something similar with Ulysses using full-text search, but this looks a lot more powerful. I guess I gotta install Excel 2013.
Rob Volk
March 15, 2013 at 8:01 pm
No, it works with Excel 2010 too I think
Chris Webb
March 15, 2013 at 8:02 pm
What is Data Explorer targeted to solve and where does it fit in the mix of Microsoft BI tools? It looks like it overlaps some with PowerPivot on the loading of data, and SSIS or Access on the ETL/transformation of data, and VBA or Visual Studio for coding with M(?). I am confused.
MSBI Pro
March 15, 2013 at 9:53 pm
I don’t think it overlaps with PowerPivot on ETL, since PowerPivot doesn’t really have any ETL functionality. I don’t think it overlaps with SSIS either since SSIS isn’t a desktop, self-service tool. However I think it does overlap a bit with PowerPivot and VBA for certain types of calculation and reporting though; in some scenarios I think users will prefer to work with Data Explorer rather than PowerPivot because it’s easier to build up calculations with its step-based approach.
Chris Webb
March 15, 2013 at 9:59 pm
Is it targeted for loading data only into Excel? Does it load into PowerPivot directly or are you limited to the Excel row limits? I really like that PowerPivot upgrades to SSAS Tabular when needed. Data Explorer seems like an Excel-only thing. Does the ETL or M(?) steps upgrade to SSIS? What are the realistic data set size and performance limits for a desktop user – are they similar to those in PowerPivot? I think I am missing the bigger picture of when/where Data Explorer makes sense and when I would not want customers to use it but suggest PowerPivot, SSIS or something else. It would be nice to see a diagram with it in the mix of MSBI tools, target use cases, and path from self-service to enterprise usage when one of these self-service Data Explorer projects becomes a mission critical project and then needs to be upgraded to be more of a enterprise ready versus personal solution.
MSBI Pro
March 15, 2013 at 11:51 pm
To answer some of your questions:
You can load data directly into PowerPivot and don’t have to load it into the worksheet.
No, it doesn’t upgrade to SSIS.
I don’t know what its scalability is like; PowerPivot is likely to be faster for some things, like aggregating and filtering, but PowerPivot is a different type of tool.
Really, Data Explorer is being positioned as a self-service ETL tool and this positioning means it complements PowerPivot very well. The point I’ve been making here is that actually Data Explorer is capable of much more than ETL, but its more advanced capabilities are unlikely to be interesting to most users.
Chris Webb
March 16, 2013 at 12:20 pm
[...] Chris Web Finds Shakespeare’s favorite Words [...]
Cool Things you can do with Data Explorer » Bacon Bits:
March 21, 2013 at 10:23 pm
Nice blog post Chris, very interesting.
There seems to be a small error in the copy-pastable code:
RemoveBlanks = Table.SelectRows(RenameColumnToWord, each ([Word] “”)),
The semicolon shouldn’t be there.
I recreated the same set-up in SSIS using the Term Extraction component (which is an Enterprise edition component) and it outperforms Data Explorer as expected (so I don’t have to fear for my job
. Nonetheless I’m very impressed with Data Explorer and its capabilities and I very much enjoy your blog posts about it in the past few weeks.
Koen Verbeeck (@Ko_Ver)
March 22, 2013 at 12:58 pm
Is it the final comma you mean (there isn’t a semi-colon)? Yes, that’s a copy/paste error – I was getting the code from the full script.
Chris Webb
March 22, 2013 at 1:45 pm
Great job Chris. I did the same with some books of Emile Zola and top words are Nana and Madame
Djeepy1
April 7, 2013 at 9:50 pm
Hi, this query is perfect. But, i’m quite bad in code. I would like know, if it’s possible to delete or remove some words listed in a .txt files or in a sheet of Excel, actually, i have created a new entry in this code with more than 100 words (filter text, does not contain) = Table.SelectRows(KeptFirstRows, each ([Word] “04″ and [Word] “11″ and [Word] “12″ and [Word] “20″…. But, i would like listed words in a file or a sheet. Thank you !
kakemphaton
April 10, 2013 at 7:58 pm