Implement a word frequency list for a book and use it to compare similarity to other books.
With the meta data, get the books by ID using Bridges API: DataSource.getGutenbergBookText()
Generate a word frequency list with the book text
Compare two frequency lists to determine the similarity between book texts. Can use a L1 Norm comparison.
One can change the complextiy of the comparison algorithm to one that is L2 Norm (Euclidean Distance) or even L3 Norm.
How did you display the similarity value? One can switch up the visual aspect of the assignment to convey different meanings. You can display a
Changing the dataset used for this comparison could be a good way to get more engagement in the assignment. Using song lyrics is a good alternative to the gutenberg data.