I present my first web application, written in Python! https://www.moorelanguage.com
I've been working in translation/localization for some years. Then I started learning more about text data and decided to learn Python.
Recently, I've been working on a side project that involves data analysis of Spanish language data.
THE DATA
I have seen some analysis on Twitter data, but none in Spanish so far. Thanks to Google Dataset Search I found a nice dataset: https://bit.ly/2Cn6sKH
I started learning some libraries and exploring the data set. Then I built a web app with it.
THE APP
This is an app that allows you to explore the whole dataset on a map. Also, it leverages the dataset to implement a similarity model, to guess the city of any text you input.
You can do the following things within the app:
Enter one word. See the cities in which the word is used with the highest frequency. Click on the circles on the map to see the most similar words in each city.
Compare two words. See the cities in which these are used with the highest frequency.
Click on any country name. See the most frequent or unique words for that country.
Find the regional origin of a text in Spanish. See which cities are the most similar to the text you entered.
TOOLS
I used Pandas to read and process the dataset. For text processing, I used Gensim. To plot the cities on a map, I used Folium. I used Flask to build a web app, which I host on Digital Ocean.
CONCLUSION
I enjoyed this process a lot! I am happy about it, I learned a lot and I was able to materialize my idea.
The code is in github: https://github.com/luismond/logeo
What do you think? What could I do next?