LA-2

Author

Sandhya Naik and Saraswathi


Introduction

This report presents an advanced analysis of global mobile vendor market share trends from April 2025 to March 2026 using StatCounter data. The objective is to evaluate performance trends, identify leading brands, and interpret competitive dynamics in the smartphone industry.


Load Libraries

library(ggplot2)
library(dplyr)

Attaching package: 'dplyr'
The following objects are masked from 'package:stats':

    filter, lag
The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union
library(tidyr)

Convert to Long Format

data_long <- pivot_longer(data, cols = -Month,
                         names_to = "Brand",
                         values_to = "Share")

Line Chart (Trend Analysis)

ggplot(data_long, aes(x = Month, y = Share, color = Brand, group = Brand)) +
  geom_line(linewidth = 1.2) +
  geom_point() +
  labs(title = "Monthly Mobile Vendor Market Share Trend (2025–2026)",
       x = "Month",
       y = "Market Share (%)") +
  theme_minimal()


Interpretation

  • Apple shows strong growth, especially towards early 2026, reaching the highest share.
  • Samsung displays a gradual decline with minor fluctuations.
  • Xiaomi remains relatively stable but shows a decline in the final month.
  • Vivo and Oppo maintain consistent performance but drop slightly at the end.

Key Insights

  • Apple dominates the market and shows an upward trend.
  • Samsung is losing market share gradually.
  • Chinese brands (Xiaomi, Vivo, Oppo) are stable but fragmented.
  • Market competition is intense, especially in mid-range segments.

Conclusion

The smartphone market is dynamic, with Apple leading strongly and Samsung facing competition. Trend visualization clearly highlights performance shifts and market behavior over time.