Facebook Fans Influence: Mining Time-Dependent Power using FP-Growth

Mining time-dependent influential users in Facebook fans group

2016-10-01
Li-Jen Kao, Yo-Ping Huang, Frode Eika Sandnes
Summary
Problem
Method
Results
Takeaways
Abstract

This paper introduces a framework for identifying "time-dependent influential users" within Facebook fan groups by leveraging Frequent Pattern Mining (FP-growth). The method moves beyond static popularity metrics like Klout scores to find users whose social influence peaks at specific times, enabling brands to optimize the timing of their marketing activities.

TL;DR

In the world of social media marketing, a high Klout score isn't everything. This paper presents a framework to find Time-Dependent Influential Users—individuals who may not be general celebrities but hold significant power to trigger information cascades during specific intervals. By combining time-segmentation with Frequent Pattern Mining (FP-growth), the authors provide a roadmap for businesses to time their product promotions for maximum impact.

Background: The Limits of Static Influence

Most businesses today rely on aggregate metrics to identify influencers. However, social influence is rarely static. A user might be highly influential on Monday mornings regarding coffee but invisible on Friday nights. Previous methods fail because they ignore the temporal dimension, treating influence as a stationary attribute rather than a dynamic variable.

Methodology: From Clicks to Frequent Patterns

The proposed framework operates through a rigorous five-step pipeline:

  1. Time Segmentation: Dividing a long duration (e.g., a month) into discrete segments (e.g., days).
  2. Influence Quantification: Calculating an Influence Score for each user based on feedback loops:
  3. Discretization: Converting continuous scores into levels: Low (0-30), Medium (30-80), and High (80+).
  4. Transaction Modeling: Each time segment is treated as a "transaction" containing participating fans and their influence levels.
  5. FP-Growth Mining: Applying the FP-growth algorithm to find frequent influence patterns (L-frequent patterns) across the reduced dataset.

Framework Logic Figure 1: Conceptual visualization of successive time segments for influence tracking.

Why FP-Growth?

The choice of FP-growth over the classic Apriori algorithm is strategic. In social network data, where the number of "items" (users) can be in the thousands, Apriori's repeated database scans and candidate generation become a bottleneck. FP-growth uses a compressed tree structure (FP-tree), scanning the database only twice, which is significantly more efficient for high-dimensional social transactions.

Experimental Insights

Through a theoretical experiment across four weeks of data, the authors identified users who exhibit "bursty" influence. For example, while some users appeared frequently across all segments, a specific user, n8, was identified as a key time-dependent influencer who peaked only during specific segments like and .

Influence Transactions Table Table 1: Discretized influence transactions used for pattern mining.

Key Takeaways from the Data:

  • Precision Timing: Businesses can now identify the exact time segments where specific users are likely to trigger a purchase cascade.
  • Hidden Gems: Users with low global influence (Klout) but high "segment influence" can be recruited as cost-effective micro-influencers.

Critical Analysis & Conclusion

This work successfully bridges the gap between frequent itemset mining and temporal social analysis.

Strengths:

  • Intuitive and computationally efficient.
  • Directly applicable to real-world marketing automation.

Limitations:

  • The study uses a simplified weight system (); in reality, a "Share" is often exponentially more valuable than a "Like."
  • The threshold for "Low" vs "High" influence is currently arbitrary and needs to be tuned per industry.

Future Outlook: The integration of sentiment analysis (judging if comments are positive or negative) and social graph topology (who follows whom) would further refine this model, turning it from a pattern miner into a predictive influence engine.

Find Similar Papers

Try Our Examples

  • Search for recent papers that extend the FP-growth algorithm for real-time influence tracking in streaming social media data.
  • Which paper first introduced the concept of time-augmented frequent itemset mining, and how does this Facebook fan group study relate to it?
  • Investigate how time-dependent influence mining has been applied to multi-platform marketing strategies (e.g., cross-posting between Facebook, Instagram, and TikTok).
Contents
Facebook Fans Influence: Mining Time-Dependent Power using FP-Growth
1. TL;DR
2. Background: The Limits of Static Influence
3. Methodology: From Clicks to Frequent Patterns
4. Why FP-Growth?
5. Experimental Insights
5.1. Key Takeaways from the Data:
6. Critical Analysis & Conclusion