This repository hosts code and projects featured in my Medium posts. Each folder contains code, instructions, and resources for a different topic.
- Post: Deep Dive into Word Cloud Creation
- Description: A Python-based project to generate word clouds from F1 trending tweets (first half of the 2022 season).
- Folder:
f1_wordcloud
- Features:
- Word cloud visualization using
wordcloud
andmatplotlib
. - Custom colormaps.
- Stopword filtering.
- Word cloud visualization using
- Post: Web Scraping and Text Analysis of Travel Trends on Blogs
- Description: This project explores the use of web scraping to extract travel-related blog posts from Naver using its API. The collected data is then analyzed to identify trends in travel discussions, sentiments, and popular keywords. Through this analysis, valuable insights into travel preferences and emerging trends are uncovered.
- Folder:
crawling_pet_project
- Features:
- Web crawling using the Naver API
- Data cleaning and preprocessing with NLTK and Okt for processing Korean text
- Text analysis, including keyword analysis, sentiment analysis, and topic modeling (LDA)
- Visualization of results, including word cloud generation using
wordcloud
package