This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <head> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.min.css" rel="stylesheet"/> | |
| <style> | |
| #main { | |
| margin: 2rem; | |
| } | |
| .big { | |
| font-size: 1.1rem; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log("Analyzing data..."); | |
| data.forEach((dataItem) => { | |
| //Convert contractions to standard lexicon from comment | |
| const lexedReview = aposToLexForm(dataItem.comment.content); | |
| //Lower case | |
| const casedReview = lexedReview.toLowerCase(); | |
| //Only alphabetic values | |
| const alphaOnlyReview = casedReview.replace(/[^a-zA-Z\s]+/g, ''); | |
| const { WordTokenizer } = natural; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"result":1,"result_code":null,"result_detail":"","result_msg":"","result_cached":null,"data":{"collection":[{"customer":{"avatar_url":"https:\/\/graph.facebook.com\/1903061816401729\/picture?type=normal","name":"Fabio P.","rating_count":5,"distinction":"Conqueror"},"vote_count":0,"restaurant":{"id_restaurant":447297,"name":"Architorta bistrot"},"guest_reviews":null,"food_reports":null,"id":47757965,"date":"2020-06-06T18:00:00+0000","moderation_status":"PUBLISHED","reservation":{"id_reservation":232160173},"rating":{"average":10,"ambience":10,"food":10,"service":10},"comment":{"content":"Locale piccolino ma di grande stile .. ottima atmosfera ... proprietario carinissimo . Ti fa sentire a casa .. menu semplice ma innovativo ottimamente preparato \u00e8 presentato !!!\nPosto da 10 e lode da tornarci spesso e volentieri !!!!\nBravissimi","reply":null,"language":"it"}},{"customer":{"avatar_url":"https:\/\/graph.facebook.com\/10155857881760306\/picture?type=normal","name":"Carlos Enrique P.","rating_count":10,"di |