Build a Sentiment Analysis Dashboard
Build a dashboard that analyzes text sentiment and visualizes results over time.
Requirements
Text input area: paste text to analyzeSentiment score display: positive/negative/neutral with confidenceBatch mode: paste multiple texts (one per line) and see aggregate resultsSentiment over time chart (for ordered texts like tweets or reviews)Word cloud highlighting positive (green) and negative (red) wordsExport results as CSVUse a simple rule-based sentiment analyzer (AFINN lexicon or similar)Technical Notes
Implement a basic sentiment analyzer using a word-score lexicon. No API calls needed. Use Recharts for charts.
Bonus Points
Real Twitter/Reddit API integration for live analysisEmoji sentiment supportComparison mode between two text sources