<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Adesh Ibrahim</title>
    <description>The latest articles on DEV Community by Adesh Ibrahim (@adesh_ibrahim_6adaec0df14).</description>
    <link>https://dev.to/adesh_ibrahim_6adaec0df14</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3818265%2Fb8843542-18e6-43b1-b44a-696003560629.png</url>
      <title>DEV Community: Adesh Ibrahim</title>
      <link>https://dev.to/adesh_ibrahim_6adaec0df14</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adesh_ibrahim_6adaec0df14"/>
    <language>en</language>
    <item>
      <title>WHY STATISTICS IS IMPORTANT IN DATA SCIENCE</title>
      <dc:creator>Adesh Ibrahim</dc:creator>
      <pubDate>Fri, 19 Jun 2026 14:04:14 +0000</pubDate>
      <link>https://dev.to/adesh_ibrahim_6adaec0df14/why-statistics-is-important-in-data-science-32f5</link>
      <guid>https://dev.to/adesh_ibrahim_6adaec0df14/why-statistics-is-important-in-data-science-32f5</guid>
      <description>&lt;h1&gt;
  
  
  &lt;strong&gt;Why Statistics Is Important in Data Science&lt;/strong&gt;
&lt;/h1&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Introduction&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Data science has emerged as one of the most transformative fields of the 21st century, powering everything from recommendation engines to medical breakthroughs. Yet beneath the glamour of machine learning models and AI systems lies a bedrock discipline that makes it all possible: &lt;strong&gt;statistics&lt;/strong&gt;. Without a solid grounding in statistics, data science is little more than sophisticated guesswork. Understanding why statistics is so central to data science is essential for anyone who wants to work with data meaningfully.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;1. Statistics Is the Language of Data&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;data science is about extracting insight from data — and statistics is the formal language for doing so. Concepts like mean, variance, standard deviation, probability distributions, and hypothesis testing are not just academic abstractions; they are the tools data scientists use to describe, summarize, and interpret datasets every day.&lt;/p&gt;

&lt;p&gt;When a data scientist says a model performs "significantly better," they are invoking statistical hypothesis testing. When they talk about a "95% confidence interval," they are communicating uncertainty in a rigorous, mathematically grounded way. Without this shared language, claims about data become vague and unverifiable.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;2. Understanding Data Distributions&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Before building any model, a data scientist must understand the shape and behavior of their data. Is it normally distributed? Skewed? Does it contain outliers? These questions matter enormously because most machine learning algorithms make underlying assumptions about data distributions.&lt;/p&gt;

&lt;p&gt;For instance, linear regression assumes a normal distribution of residuals. Naive Bayes assumes feature independence. Violating these assumptions without awareness can lead to models that perform poorly or produce misleading predictions. Statistical knowledge helps practitioners choose appropriate models and transformations to handle real-world, messy data effectively.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;3. Hypothesis Testing and Experimentation&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;One of the most valuable applications of statistics in data science is in the design and analysis of experiments. Companies like Google, Amazon, and Netflix run thousands of A/B tests every year to determine whether a new feature, algorithm, or design actually improves user outcomes.&lt;/p&gt;

&lt;p&gt;A/B testing is fundamentally a statistical exercise. It involves:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Defining a null hypothesis and an alternative hypothesis&lt;/li&gt;
&lt;li&gt;Selecting an appropriate statistical test (t-test, chi-square test, etc.)&lt;/li&gt;
&lt;li&gt;Determining sample size to ensure adequate statistical power&lt;/li&gt;
&lt;li&gt;Interpreting p-values and confidence intervals to make decisions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without statistics, it is impossible to tell whether an observed difference between two groups is real or simply due to random chance. This distinction is the difference between a data-driven decision and a costly mistake.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;4. Probability: The Foundation of Predictive Modeling&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Probability theory is the mathematical backbone of virtually every predictive model used in data science. Whether training a neural network, building a Bayesian classifier, or estimating survival curves, data scientists are always working with probabilistic reasoning.&lt;/p&gt;

&lt;p&gt;Understanding concepts such as conditional probability, Bayes' theorem, probability density functions, and likelihood estimation is crucial for building models that are not just accurate on training data, but generalize well to unseen data. Probability also underpins the logic behind concepts like regularization, which prevents overfitting — a problem that can make even a complex model useless in production.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;5. Feature Selection and Dimensionality Reduction&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Real-world datasets often contain dozens, hundreds, or even thousands of features. Not all of them are relevant or useful. Statistical techniques help data scientists identify which features truly matter.&lt;/p&gt;

&lt;p&gt;Methods like correlation analysis, chi-square tests for categorical variables, and ANOVA (Analysis of Variance) allow practitioners to assess relationships between variables and determine which features contribute meaningful signal versus noise. Dimensionality reduction techniques like Principal Component Analysis (PCA) are grounded in linear algebra and statistics, transforming high-dimensional data into a more manageable form while preserving the most important variance.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;6. Evaluating and Validating Models&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Building a model is only half the job. The other half is determining how well it actually works — and this is entirely a statistical endeavor. Metrics like accuracy, precision, recall, F1 score, AUC-ROC, and RMSE are statistical measures that quantify model performance.&lt;/p&gt;

&lt;p&gt;Moreover, techniques like cross-validation, bootstrap sampling, and train-test splits are rooted in statistical principles of sampling and inference. They help data scientists estimate how a model will perform on new, unseen data — rather than simply memorizing the training set.&lt;/p&gt;

&lt;p&gt;Without statistical rigor in model evaluation, organizations risk deploying models that look impressive on paper but fail disastrously in the real world.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;7. Handling Uncertainty and Communicating Results&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Perhaps one of the most underrated roles of statistics in data science is helping practitioners quantify and communicate uncertainty. Data is never perfect, samples are always finite, and predictions are inherently probabilistic.&lt;/p&gt;

&lt;p&gt;Statistical thinking teaches data scientists to ask: "How confident am I in this estimate? What are the error bars? What assumptions am I making, and how sensitive are my conclusions to those assumptions?" These questions are critical when presenting findings to business stakeholders, policymakers, or the general public.&lt;/p&gt;

&lt;p&gt;A data scientist who can say "our model predicts a 12% increase in revenue, with a margin of error of ±3% at the 95% confidence level" is providing far more actionable and honest information than one who simply says "the model says revenue will go up."&lt;/p&gt;







&lt;h2&gt;
  
  
  &lt;strong&gt;Conclusion&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Statistics is not merely a supporting subject for data science; it is its very foundation. From understanding raw data to building predictive models, from running experiments to communicating results, statistical thinking permeates every stage of the data science workflow. As data continues to grow in volume, variety, and velocity, the demand for data scientists who deeply understand statistics will only intensify.&lt;/p&gt;

&lt;p&gt;For anyone serious about a career in data science, investing in statistical knowledge is not optional — it is essential. The best algorithms in the world are only as good as the statistical judgment behind them.&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>analytics</category>
    </item>
    <item>
      <title>HOW TO PUBLISH A POWER BI REPORT AND EMBED IT INTO A WEBSITE</title>
      <dc:creator>Adesh Ibrahim</dc:creator>
      <pubDate>Sun, 05 Apr 2026 19:05:47 +0000</pubDate>
      <link>https://dev.to/adesh_ibrahim_6adaec0df14/how-to-publish-a-power-bi-report-and-embed-it-into-a-website-2h6i</link>
      <guid>https://dev.to/adesh_ibrahim_6adaec0df14/how-to-publish-a-power-bi-report-and-embed-it-into-a-website-2h6i</guid>
      <description>&lt;h2&gt;
  
  
  HOW TO PUBLISH A POWER BI REPORT AND EMBED IT INTO A WEBSITE.
&lt;/h2&gt;

&lt;p&gt;Microsoft Power BI is a tool made by Microsoft that helps you turn data into useful information.&lt;br&gt;
With Power BI, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Connect data from Excel, databases, or online sources &lt;/li&gt;
&lt;li&gt;  Create charts, graphs, and dashboards &lt;/li&gt;
&lt;li&gt;  Understand trends and make better decisions 
It is popular because it is easy to use and shows data in a clear, visual way.&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Power BI Publishing Process
&lt;/h1&gt;

&lt;p&gt;Publishing means sharing your report with others online.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Create your report Build your charts and visuals in Power BI Desktop. &lt;/li&gt;
&lt;li&gt; Save your work Save the report on your computer. &lt;/li&gt;
&lt;li&gt; Sign in Log in to your Power BI account. &lt;/li&gt;
&lt;li&gt; Click “Publish” Upload your report to the Power BI Service (online platform). &lt;/li&gt;
&lt;li&gt; Choose a workspace Select where you want the report to be stored. &lt;/li&gt;
&lt;li&gt; Share the report Send the link or give access to other people so they can view it.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Lets use the below dashboard as an example as we go step by step until we publish our report. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3e475rd3n3y3fy0fzgbf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3e475rd3n3y3fy0fzgbf.png" alt="Dashboard" width="602" height="415"&gt;&lt;/a&gt;  &lt;/p&gt;

&lt;h1&gt;
  
  
  1. Creating a workspace
&lt;/h1&gt;

&lt;p&gt;A workspace is like a folder in Microsoft Power BI where you keep your reports.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  You create it online &lt;/li&gt;
&lt;li&gt;  It helps you organize your work &lt;/li&gt;
&lt;li&gt;  You can also invite others to work with you 
Think of it like a shared folder for reports.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3qh3ukpafvxh2gwefrun.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3qh3ukpafvxh2gwefrun.png" alt="Workspace example" width="800" height="470"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  2. Uploading and publishing your report
&lt;/h1&gt;

&lt;p&gt;This means sending your report from your computer to Power BI online.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  You click “Publish” &lt;/li&gt;
&lt;li&gt;  Your report is uploaded to the workspace &lt;/li&gt;
&lt;li&gt;  Now it is available on the internet 
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4gwrvf2ra495ipmdsxss.png" alt="Example" width="800" height="555"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  3. Embedding the report on a website
&lt;/h1&gt;

&lt;p&gt;This means putting your report on a website.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You copy the embed code &lt;/li&gt;
&lt;li&gt;Paste it into your website &lt;/li&gt;
&lt;li&gt;Your report will appear on that site &lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>analytics</category>
      <category>beginners</category>
      <category>microsoft</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>HOW EXCEL IS USED IN REAL-WORLD DATA ANALYSIS</title>
      <dc:creator>Adesh Ibrahim</dc:creator>
      <pubDate>Sun, 29 Mar 2026 11:06:18 +0000</pubDate>
      <link>https://dev.to/adesh_ibrahim_6adaec0df14/how-excel-is-used-in-real-world-data-analysis-227j</link>
      <guid>https://dev.to/adesh_ibrahim_6adaec0df14/how-excel-is-used-in-real-world-data-analysis-227j</guid>
      <description>&lt;h2&gt;
  
  
  HOW EXCEL IS USED IN REAL-WORLD DATA ANALYSIS
&lt;/h2&gt;

&lt;h1&gt;
  
  
  What is excel
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Excel is a powerful spreadsheet application developed by Microsoft, used to organize, analyze, and visualize data using a grid of rows and columns. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Excel is widely used in the real world for data management, financial modeling, and analysis, allowing users to organize, clean, and analyze information to make informed decisions.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It acts as a versatile tool for tracking sales, managing inventory, preparing financial reports (like budgets and balance sheets), and automating tasks using VBA or Power Query.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Below are features or formulas used in excel and how they are applied when working with data;&lt;/p&gt;

&lt;h1&gt;
  
  
  Excel Formula: A custom expression starting with = that performs calculations
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;ADDITION =A1+A2+A3+A4+A5, which finds the sum of the range of values from cell A1 to cell A5.&lt;/li&gt;
&lt;li&gt;MULTIPLICATION = A1*B1
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuvfpxrdow017u68u7cpw.webp" alt="CHART" width="800" height="601"&gt;
&lt;/li&gt;
&lt;li&gt;DIVISION =A1/B1 
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fv4jhqxfzfk33hymcgp6j.webp" alt="CHART" width="800" height="637"&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
  </channel>
</rss>
