Big Data 8 min read

Uncovering Viewer Sentiment on "Dragon Tomb Cave" – A Data‑Driven Douban Analysis

This article examines Douban ratings and 500 user comments for the Chinese web drama "Dragon Tomb Cave", visualizes rating distribution, comment timing, geographic origins, and compares sentiment with other series using Python web‑scraping and data‑visualization techniques.

Python Crawling & Data Mining
Python Crawling & Data Mining
Python Crawling & Data Mining
Uncovering Viewer Sentiment on "Dragon Tomb Cave" – A Data‑Driven Douban Analysis

Douban Rating and Audience

Analysis of Douban scores for the Chinese web drama "Dragon Tomb Cave" shows an initial 8.4 rating, now stabilising at 8.2, with 70.6% of reviewers giving five‑star scores and only 3.2% giving one star.

Web Scraping Comments

Python code was used to scrape up to 500 comments from Douban, extracting username, star rating, comment time, and comment text.

for comment in comments:
    # get username
    user = comment.xpath('.//h3/span[2]/a/text()')[0]
    # get star rating
    star = comment.xpath('.//h3/span[2]/span[2]/@class')[0][7:8]
    # get time
    date_time = comment.xpath('.//h3/span[2]/span[3]/@title')
    # get comment text
    comment = comment.xpath('.//p/span/text()')[0].strip()

The rating distribution chart confirms the dominance of five‑star reviews.

A time‑series plot reveals two spikes on April 2 and April 9, matching the weekly Wednesday release schedule.

Geographic analysis shows most commenters are from Beijing, followed by Shanghai and Guangdong.

Comparative Analysis

Using pandas merge on the user URL, comments for "Dragon Tomb Cave" were compared with those for "Jing Jue Gu Cheng" and "Huang Pizi Fen". The merged dataset highlights differing character focus and sentiment patterns.

Word‑cloud visualizations show predominantly positive terms for both series, though "Dragon Tomb Cave" emphasizes characters Hu Bayi, Zheng Gushou, and Wang Pangzi, while "Jing Jue Gu Cheng" draws more attention to Chen Qiao‑en.

Comparing "Dragon Tomb Cave" with "Huang Pizi Fen" reveals a higher mention frequency of Ran Jingtian’s Taiwanese accent in the latter.

Further comparison with the "Lost Tomb" series using Baidu Index shows a larger female fan base and younger age distribution for "Lost Tomb".

Conclusion

The drama enjoys strong audience approval, with many viewers praising the cast and production quality, though it still exhibits common shortcomings of domestic series.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

PythonSentiment AnalysisData visualizationWeb ScrapingChinese dramaDouban analysis
Python Crawling & Data Mining
Written by

Python Crawling & Data Mining

Life's short, I code in Python. This channel shares Python web crawling, data mining, analysis, processing, visualization, automated testing, DevOps, big data, AI, cloud computing, machine learning tools, resources, news, technical articles, tutorial videos and learning materials. Join us!

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.