Text analysis using Alteryx
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi all, I am trying to do out a task where I'll extract out each keyword's occurrences, and count them to see the top 10 keywords. Any ways to do it out?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I would split my text on a \s (whitespace) with the text to columns tool (split to rows). Then make every single word lowercase (or upper case). Use the Regex tool or the Data Cleansing tool to remove unwanted characters. Summarize on word count and then use a sort descending on this field. After that you can use a sample for the top 10.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Sorry, do you have a workflow to show it out?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi, so thankful for your help (: thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
We have done some similar analysis. Another cool view is to use a Multi-Row Formula once you have the keywords to look for common word pairings. Due to my organizations policies I can't upload my workflows but the expression to combine the words is "[Keywords]+"~"+[Row+1:Keywords]" this will add a tilde ("~") instead of a space between the Keywords.
