Skip to main content

About me


About us: Embracing the Journey of A.Alim's blog



About Me

Hey there! 👋
Welcome to StatSphere — I’m so glad you stopped by.

I'm Abdul Alim, a data nerd at heart with an MSc in Statistics and a proud GATE qualifier. I created this blog to share my love for statistics, data science, and all things analytics — in a way that’s approachable, practical, and actually useful.

Like many others, I’ve had my fair share of struggles figuring out topics like time series forecasting, ARIMA modeling, ETS, and R programming. I often found that the resources online were either too basic or way too complex. That’s when I decided:

Why not build a space that bridges that gap?

So, StatSphere was born — a platform where I simplify complex concepts, share hands-on tutorials, and explore the intersection of statistics, business, and programming.

Here, you'll find:

  • Step-by-step guides on R and time series modeling

  • Statistical explanations with real-world relevance

  • Data science insights that connect theory to practice

  • And a bit of the journey that got me here

Whether you're a student, a data science enthusiast, or a curious mind trying to make sense of the data world — you're welcome here.

Let’s keep learning, experimenting, and growing together.
Thanks for being here — I truly appreciate it 🙌

Cheers,
Abdul Alim

Comments

Popular posts from this blog

Time Series Forecasting in R with Facebook Prophet – A Beginner’s Guide

📦 Summary Box Topic: Time Series Forecasting with Facebook Prophet in R Dataset Used: AirPassengers (Monthly Airline Passenger Numbers 1949–1960) Tool: Facebook Prophet Goal: Forecast future values and evaluate prediction accuracy Key Features: Handles trend and seasonality automatically Easy to use with minimal tuning Visual and interpretable outputs Evaluation Metrics: MAE, RMSE, MAPE Best For: Business, Web Traffic, and Seasonal Forecasting Key Points Research suggests time series analysis predicts future trends using historical data, like stock prices or weather patterns. Common methods include ARIMA, SARIMA, exponential smoothing, and machine learning models like RNNs and LSTMs. Prophet automates trend and seasonality modeling and is especially suitable for business and web forecasting scenarios. Forecast evaluation using metrics like MAE, MSE, RMSE, and MAPE is essential to compare model performance. ⚠️ Note: To fix the error do not know how to convert 'ti...

Causal Discovery in Time Series: Untangling Time, Correlation & Causation

Causal Discovery in Time Series: Untangling Time, Correlation & Causation Introduction "Correlation is not causation" is a mantra every statistician lives by. However, when it comes to time series data, the very structure of time gives us something to work with. After all, if variable A precedes variable B consistently, can we say A causes B? In this post, we dive into one of the most intriguing challenges in time series analysis: discovering causality from observational data. We will explore classic and modern methods for identifying causality, their assumptions, limitations, and real-world applications. By the end, you’ll be equipped with tools and insights to experiment with causal inference in your time series data. What Is Causality in Time Series? Causality goes beyond correlation. It implies a directional influence — a cause must precede its effect. In time series, this temporal aspect offers a foothold to infer causality. However, time ordering alone is not enoug...

How Statistics Secretly Runs Your Daily Life (With R Code & Real Data Visualizations)

Summary Box Statistics powers daily tools from weather apps to credit decisions. R makes it easy to visualize and analyze real-world data. Seemingly simple percentages are often backed by deep statistical models. You can explore your own local patterns using public data.  Call to action: Next time you see a percentage or average, ask: What data was included (and excluded)? How was it collected? Who benefits from this interpretation? Introduction: The Invisible Force Around You 1.1: Hook the reader Did your weather app say "70% chance of rain" today? That percentage didn't come from magic—it's statistics at work. From the moment you check your phone in the morning to when you scroll Netflix at night, statistics quietly shapes nearly every decision you make. 1.2: Define statistics briefly Statistics isn't just boring numbers—it's the science of finding meaning in data. Whether it's calculating the average rating of your favorite coffee sh...