Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
BriceRENOUF
Contributor
Contributor

Script for text mining

Dear all,

I want to do some Text mining and use the Levenshtein distance.

I have a text and want to analyse each word with all others.

From this table:

text_mining_from.png

to this one:

text_mining_to.png

I tried with some Generic load but it's not really clear...

Thanks for your help.

Brice

Labels (1)
1 Solution

Accepted Solutions
Or
MVP
MVP

It looks like you're trying for a Cartesian join:

Load ID, Word From YourTable;

Join

Load Word as Comparison From YourTable;

View solution in original post

2 Replies
Or
MVP
MVP

It looks like you're trying for a Cartesian join:

Load ID, Word From YourTable;

Join

Load Word as Comparison From YourTable;

BriceRENOUF
Contributor
Contributor
Author

It works great!

Much easier than I thought...

Thanks a lot!