<?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: Enock Kipngetich</title>
    <description>The latest articles on DEV Community by Enock Kipngetich (@enock_kipngetich).</description>
    <link>https://dev.to/enock_kipngetich</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%2F3508746%2Fea741fae-722e-4e34-baa5-ffeab403a530.png</url>
      <title>DEV Community: Enock Kipngetich</title>
      <link>https://dev.to/enock_kipngetich</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/enock_kipngetich"/>
    <language>en</language>
    <item>
      <title>How Statistics Can Be Used To Drive Business Decisions</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Tue, 03 Feb 2026 06:49:49 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/how-statistics-can-be-used-to-drive-business-decisions-40hc</link>
      <guid>https://dev.to/enock_kipngetich/how-statistics-can-be-used-to-drive-business-decisions-40hc</guid>
      <description>&lt;h2&gt;
  
  
  A Practical Case Study Using Retail Sales Data
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Introduction
&lt;/h3&gt;

&lt;p&gt;In today’s data-driven world, businesses collect large volumes of data but often struggle to turn it into actionable decisions. While advanced machine learning models are popular, statistics remains the foundation of effective business analysis. Statistical methods help organizations understand performance, manage uncertainty, test assumptions, and make informed decisions with confidence.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Problem Statement
&lt;/h3&gt;

&lt;p&gt;The retail company operates both online and physical stores across multiple regions. Management faces three key challenges:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Understanding revenue performance &lt;br&gt;
What does “typical” revenue look like?&lt;br&gt;
How stable are sales over time?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Evaluating reliability of insights&lt;/p&gt;

&lt;p&gt;Are observed patterns meaningful or due to randomness?&lt;br&gt;
Is the data representative of the entire business?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Assessing marketing effectiveness&lt;/p&gt;

&lt;p&gt;Does running a marketing campaign increase average revenue per transaction?&lt;br&gt;
Is the observed increase statistically and practically meaningful?&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  3. Statistical Methods Used
&lt;/h3&gt;

&lt;p&gt;This project applied several core statistical techniques, each serving a specific business purpose.&lt;/p&gt;

&lt;h4&gt;
  
  
  3.1 Descriptive Statistics
&lt;/h4&gt;

&lt;p&gt;Descriptive statistics were used to summarize and understand revenue data.&lt;/p&gt;

&lt;h4&gt;
  
  
  Central Tendency
&lt;/h4&gt;

&lt;p&gt;Mean&lt;br&gt;
Median&lt;br&gt;
Mode&lt;/p&gt;

&lt;p&gt;These measures helped identify what a “typical” revenue value looks like.&lt;/p&gt;

&lt;h4&gt;
  
  
  Dispersion
&lt;/h4&gt;

&lt;p&gt;Range&lt;br&gt;
Variance&lt;br&gt;
Standard deviation&lt;/p&gt;

&lt;p&gt;These metrics measured how much revenue varies over time and across transactions.&lt;/p&gt;

&lt;h4&gt;
  
  
  3.2 Distribution Shape Analysis
&lt;/h4&gt;

&lt;p&gt;Revenue data was visualized using histograms to assess:&lt;br&gt;
Skewness (direction of asymmetry)&lt;br&gt;
Kurtosis (presence of extreme values)&lt;/p&gt;

&lt;p&gt;Understanding distribution shape helps determine:&lt;/p&gt;

&lt;p&gt;Which summary statistics are reliable&lt;br&gt;
Whether standard statistical tests can be applied&lt;/p&gt;

&lt;h4&gt;
  
  
  3.3 Data Visualization
&lt;/h4&gt;

&lt;p&gt;Several visual tools were used:&lt;/p&gt;

&lt;p&gt;Line charts to analyze revenue trends over time&lt;br&gt;
Bar charts to compare store types&lt;br&gt;
Box plots to compare regions&lt;br&gt;
Scatter plots to explore the relationship between marketing spend and revenue&lt;br&gt;
Why this matters:&lt;br&gt;
Visualizations reveal patterns that raw numbers often hide and help stakeholders understand insights quickly.&lt;/p&gt;

&lt;h4&gt;
  
  
  3.4 Sampling and Bias Analysis
&lt;/h4&gt;

&lt;p&gt;The project examined:&lt;/p&gt;

&lt;p&gt;The difference between population and sample&lt;br&gt;
 The impact of sampling bias, especially when only urban stores are included&lt;/p&gt;

&lt;p&gt;A stratified random sampling approach was recommended to improve representativeness.&lt;/p&gt;

&lt;h4&gt;
  
  
  3.5 Law of Large Numbers (LLN)
&lt;/h4&gt;

&lt;p&gt;The Law of Large Numbers was demonstrated by showing how sample means stabilize as sample size increases.&lt;br&gt;
Business lesson:&lt;br&gt;
Decisions based on small datasets are risky and may lead to misleading conclusions.&lt;/p&gt;

&lt;h4&gt;
  
  
  3.6 Central Limit Theorem (CLT)
&lt;/h4&gt;

&lt;p&gt;The CLT was used to show that:&lt;br&gt;
 Even when revenue is skewed,&lt;br&gt;
 The distribution of sample means becomes approximately normal with sufficient sample size&lt;/p&gt;

&lt;p&gt;This justified the use of parametric statistical tests.&lt;/p&gt;

&lt;h3&gt;
  
  
  3.7 Hypothesis Testing (t-test)
&lt;/h3&gt;

&lt;p&gt;A one-tailed t-test was conducted to evaluate whether marketing campaigns increased average revenue.&lt;br&gt;
Null hypothesis (H₀): No difference in average revenue&lt;br&gt;
Alternative hypothesis (H₁): Campaign revenue is higher&lt;br&gt;
The test used:&lt;br&gt;
 95% confidence level&lt;br&gt;
 α = 0.05&lt;/p&gt;

&lt;h3&gt;
  
  
  3.8 Effect Size and Power
&lt;/h3&gt;

&lt;p&gt;Beyond statistical significance, the project calculated Cohen’s d to measure the magnitude of the campaign’s effect.&lt;br&gt;
Power considerations were discussed to explain why some real effects may not appear statistically significant.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Key Findings
&lt;/h3&gt;

&lt;p&gt;The statistical analysis produced several important findings:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Revenue is positively skewed&lt;br&gt;
Extreme high-revenue transactions exist&lt;br&gt;
The median is a better measure of typical revenue than the mean&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Sales variability is high&lt;br&gt;
High standard deviation indicates unstable revenue&lt;br&gt;
External factors (campaigns, seasonality) strongly influence performance&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Online stores perform strongly&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Online channels contribute significantly to total revenue&lt;br&gt;
  They show scalability advantages&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Marketing campaigns increase revenue&lt;br&gt;
The t-test showed a statistically significant increase in average revenue&lt;br&gt;
Cohen’s d indicated a medium practical effect&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Sampling matters&lt;br&gt;
Urban-only samples lead to biased conclusions&lt;br&gt;
Representative sampling improves decision reliability&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  5. Business Implications
&lt;/h3&gt;

&lt;p&gt;The findings translate directly into business actions:&lt;/p&gt;

&lt;h4&gt;
  
  
  Better Performance Measurement
&lt;/h4&gt;

&lt;p&gt;Use median revenue in reports to avoid distortion from extreme values&lt;/p&gt;

&lt;h4&gt;
  
  
  Improved Forecasting
&lt;/h4&gt;

&lt;p&gt;High variability suggests the need for better demand planning and revenue smoothing strategies&lt;/p&gt;

&lt;h4&gt;
  
  
  Evidence-Based Marketing Decisions
&lt;/h4&gt;

&lt;p&gt;Marketing campaigns should be continued and optimized, not evaluated based on intuition alone&lt;/p&gt;

&lt;h4&gt;
  
  
  Smarter Data Collection
&lt;/h4&gt;

&lt;p&gt;Representative sampling ensures insights reflect the entire business&lt;br&gt;
 Larger samples increase confidence in decisions&lt;/p&gt;

&lt;h4&gt;
  
  
  Balanced Decision-Making
&lt;/h4&gt;

&lt;p&gt;Statistical significance should be combined with effect size and business context&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Why This Matters for Data Learners
&lt;/h3&gt;

&lt;p&gt;This case study highlights an important lesson for beginners and intermediate data learners:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You don’t need machine learning to deliver value.&lt;br&gt;
Strong statistical thinking is often enough.&lt;br&gt;
By mastering:&lt;br&gt;
Descriptive statistics&lt;br&gt;
Sampling concepts&lt;br&gt;
Probability theory&lt;br&gt;
Hypothesis testing&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You can solve real business problems and communicate insights clearly to stakeholders.&lt;/p&gt;

&lt;h3&gt;
  
  
  7. Conclusion
&lt;/h3&gt;

&lt;p&gt;Statistics plays a critical role in transforming raw data into informed business decisions. Through this retail sales case study, we demonstrated how statistical methods help businesses understand performance, reduce uncertainty, test assumptions, and evaluate strategies objectively.&lt;/p&gt;

&lt;p&gt;When applied correctly, statistics provides not only answers, but confidence that decisions are based on evidence rather than guesswork.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Ridge vs Lasso Regression</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Thu, 22 Jan 2026 05:40:31 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/ridge-vs-lasso-regression-4ce</link>
      <guid>https://dev.to/enock_kipngetich/ridge-vs-lasso-regression-4ce</guid>
      <description>&lt;h1&gt;
  
  
  1. Ordinary Least Squares (OLS)
&lt;/h1&gt;

&lt;p&gt;method used in linear regression to estimate model parameters by minimizing the sum of squared errors between actual and predicted values.&lt;br&gt;
&lt;code&gt;Loss=∑](𝑦−𝑦^)2Loss=∑(y−y^)2&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why OLS can overfit:
&lt;/h2&gt;

&lt;p&gt;.Works poorly with many features&lt;br&gt;
 .Sensitive to noise&lt;br&gt;
. Performs badly when features are correlated&lt;br&gt;
. Fits training data too closely&lt;/p&gt;

&lt;h1&gt;
  
  
  2. Regularization
&lt;/h1&gt;

&lt;p&gt;reduces overfitting by adding a penalty term to the loss function.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why it helps:
&lt;/h2&gt;

&lt;p&gt;Controls model complexity&lt;br&gt;
Reduces large coefficients&lt;br&gt;
Improves performance on unseen data&lt;/p&gt;

&lt;h1&gt;
  
  
  3. Ridge Regression (L2 Regularization)
&lt;/h1&gt;

&lt;p&gt;Loss Function:&lt;br&gt;
&lt;code&gt;Loss=∑(𝑦−𝑦^)2+𝜆∑𝛽2Loss=∑(y−y^)2+λ∑β2&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Points:
&lt;/h2&gt;

&lt;p&gt;Shrinks coefficients toward zero&lt;br&gt;
Reduces variance&lt;br&gt;
Keeps all features&lt;br&gt;
Works well with multicollinearity&lt;br&gt;
Does not perform feature selection&lt;/p&gt;

&lt;h1&gt;
  
  
  4. Lasso Regression ( Regularization)
&lt;/h1&gt;

&lt;p&gt;Loss Function:&lt;br&gt;
&lt;code&gt;Loss=∑(𝑦−𝑦^)2+𝜆∑∣𝛽∣Loss=∑(y−y^)2+λ∑∣β∣&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Points:
&lt;/h2&gt;

&lt;p&gt;Can reduce coefficients to exactly zero&lt;br&gt;
Performs automatic feature selection&lt;br&gt;
Produces simpler, more interpretable models&lt;/p&gt;

&lt;h1&gt;
  
  
  5. Ridge vs Lasso Comparison
&lt;/h1&gt;

&lt;p&gt;Ridge: Uses L2 penalty, shrinks coefficients, keeps all features, good when all variables matter.&lt;br&gt;
Lasso: Uses L1 penalty, sets some coefficients to zero, performs feature selection, good when few variables matter.&lt;/p&gt;

&lt;h1&gt;
  
  
  6. House Price Prediction Example
&lt;/h1&gt;

&lt;p&gt;Features:&lt;br&gt;
House size&lt;br&gt;
Bedrooms&lt;br&gt;
Distance to city&lt;br&gt;
Nearby schools&lt;br&gt;
Noisy variables&lt;/p&gt;

&lt;h2&gt;
  
  
  If all features affect price → Ridge Regression
&lt;/h2&gt;

&lt;p&gt;Keeps all features&lt;br&gt;
Reduces overfitting&lt;br&gt;
Handles correlated variables&lt;/p&gt;

&lt;h2&gt;
  
  
  If only few features matter → Lasso Regression
&lt;/h2&gt;

&lt;p&gt;Removes irrelevant features&lt;br&gt;
Improves interpretability&lt;br&gt;
Reduces noise&lt;/p&gt;

&lt;h1&gt;
  
  
  7. Model Evaluation
&lt;/h1&gt;

&lt;p&gt;Detecting Overfitting:&lt;br&gt;
High training accuracy + low test accuracy → Overfitting&lt;br&gt;
Similar train &amp;amp; test error → Good model&lt;/p&gt;

&lt;h2&gt;
  
  
  Role of Residuals:
&lt;/h2&gt;

&lt;p&gt;Show prediction errors&lt;br&gt;
Help detect patterns and outliers&lt;br&gt;
Random residuals = good model&lt;/p&gt;

&lt;h1&gt;
  
  
  Summary
&lt;/h1&gt;

&lt;p&gt;OLS -Simple but overfits&lt;br&gt;
Ridge -Shrinks coefficients&lt;br&gt;
Lasso -Selects features&lt;br&gt;
Regularization -Improves generalization&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HOW TO CONNECT POSTGRES SQL TO POWER BI USING LOCAL POSTGRES AND AIVEN</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Sun, 23 Nov 2025 13:33:17 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/how-to-connect-postgres-sql-to-power-bi-using-local-postgres-and-aiven-1n6a</link>
      <guid>https://dev.to/enock_kipngetich/how-to-connect-postgres-sql-to-power-bi-using-local-postgres-and-aiven-1n6a</guid>
      <description>&lt;h2&gt;
  
  
  Connect to Local PostgreSQL from Power BI
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Open Power BI Desktop&lt;/li&gt;
&lt;li&gt;Click Get Data&lt;/li&gt;
&lt;li&gt;Choose PostgreSQL database&lt;/li&gt;
&lt;li&gt;Enter:
Server: localhost:port
Database: postgres&lt;/li&gt;
&lt;/ol&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%2F7s5relv2v4uldxdosrux.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%2F7s5relv2v4uldxdosrux.png" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Enter your PostgreSQL username and password&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%2Fkc26kdxrpsbk1vnt3244.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%2Fkc26kdxrpsbk1vnt3244.png" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click Connect&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%2F6bt8j2a6mgj4y2eoc6wy.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%2F6bt8j2a6mgj4y2eoc6wy.png" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Once connected, you can load or transform your data.&lt;/p&gt;

&lt;p&gt;Connecting Power BI to PostgreSQL Hosted on Aiven&lt;/p&gt;

&lt;h2&gt;
  
  
  Aiven
&lt;/h2&gt;

&lt;p&gt;Step 1 — Create a PostgreSQL Service in Aiven&lt;/p&gt;

&lt;p&gt;In the Aiven console:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Click Create Service&lt;/li&gt;
&lt;li&gt;Select PostgreSQL&lt;/li&gt;
&lt;li&gt;Choose cloud vendor, region, and plan&lt;/li&gt;
&lt;li&gt;Deploy the service&lt;/li&gt;
&lt;/ol&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%2F0pz5ypn7t916nbvn6jcw.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%2F0pz5ypn7t916nbvn6jcw.png" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Aiven provides:&lt;/p&gt;

&lt;p&gt;Host&lt;br&gt;
Port&lt;br&gt;
Database name&lt;br&gt;
Username&lt;br&gt;
Password&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%2Foos31fqxawm87o1dzq4a.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%2Foos31fqxawm87o1dzq4a.png" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Host: pg-12345.aivencloud.com&lt;br&gt;
Port: 26257&lt;br&gt;
User: avnadmin&lt;br&gt;
Database: defaultdb&lt;/p&gt;

&lt;p&gt;Test Aiven Connection via Terminal&lt;/p&gt;

&lt;p&gt;Step 5 — Connect Power BI to Aiven PostgreSQL&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open Power BI Desktop&lt;/li&gt;
&lt;li&gt;Select Get Data → PostgreSQL database&lt;/li&gt;
&lt;li&gt;Enter:&lt;/li&gt;
&lt;/ol&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%2Fgfsl8w2fvgkpq6jcx1nk.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%2Fgfsl8w2fvgkpq6jcx1nk.png" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Server: pg-12345.aivencloud.com&lt;br&gt;
   Database: defaultdb&lt;/p&gt;

&lt;p&gt;Enter Aiven username &amp;amp; password&lt;br&gt;
 Click Connect&lt;/p&gt;

&lt;p&gt;Power BI will establish a secure SSL connection to Aiven.&lt;/p&gt;

</description>
    </item>
    <item>
      <title># EXCEL</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Tue, 14 Oct 2025 19:08:53 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/-excel-1425</link>
      <guid>https://dev.to/enock_kipngetich/-excel-1425</guid>
      <description>&lt;h2&gt;
  
  
  WHAT IS EXCEL
&lt;/h2&gt;

&lt;p&gt;analysis tool used to clean data &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%2Fzx9wa38j621d68yhxi0d.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%2Fzx9wa38j621d68yhxi0d.png" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title># DATABASE</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Tue, 14 Oct 2025 07:40:12 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/-database-2okc</link>
      <guid>https://dev.to/enock_kipngetich/-database-2okc</guid>
      <description>&lt;h2&gt;
  
  
  TYPES OF DATABASES
&lt;/h2&gt;

&lt;p&gt;relational database.&lt;br&gt;
non relational database.&lt;/p&gt;

&lt;h2&gt;
  
  
  Relational database
&lt;/h2&gt;

&lt;p&gt;stores data in structured form in rows and columns.&lt;/p&gt;

&lt;h2&gt;
  
  
  Advantages &amp;amp; Disadvantages
&lt;/h2&gt;

&lt;p&gt;Structured data relationship&lt;br&gt;
Acid compliance &lt;/p&gt;

</description>
    </item>
    <item>
      <title>#Difference between star and snowflake schema</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Thu, 09 Oct 2025 06:14:28 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/diffrence-between-star-and-snowflake-schema-4g4i</link>
      <guid>https://dev.to/enock_kipngetich/diffrence-between-star-and-snowflake-schema-4g4i</guid>
      <description>&lt;h2&gt;
  
  
  Star schema
&lt;/h2&gt;

&lt;p&gt;Simple database design used in data warehousing where a central fact table  is connected directly to dimension tables.&lt;/p&gt;

&lt;h2&gt;
  
  
  Snow flake schema.
&lt;/h2&gt;

&lt;p&gt;Data warehouse schema that organizes data in a logical and normalized way  meaning that data is divided into multiple related tables to reduce redundancy and improve data integrity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Difference between snowflake schema and star schema.
&lt;/h2&gt;

&lt;p&gt;Star schema has Central fact table connected directly to dimension tables while  snow flake has central fact table connected to dimension tables, which are further normalized into multiple related tables.&lt;br&gt;
Star schema dimension tables contain redundant data. Snow flake dimension tables are broken into smaller related tables to eliminate redundancy.&lt;br&gt;
Star fewer joins simple queries. Snow flake more joins  complex queries.&lt;br&gt;
Star schema faster query performance due to fewer joins. Snow flake Slower query performance due to more joins.&lt;br&gt;
Star schema consumes more storage space. Snow flake requires less storage space.&lt;br&gt;
Star schema easier to understand and design resembles a star shape. Snow flake more complex to understand  resembles a snowflake shape.&lt;/p&gt;

&lt;h2&gt;
  
  
  Advantages of star schema.
&lt;/h2&gt;

&lt;p&gt;Easy for users and developers to understand.&lt;br&gt;
Faster query execution due to fewer joins.&lt;br&gt;
Efficient for OLAP  and data visualization tools.&lt;br&gt;
Ideal for data marts and reporting.&lt;/p&gt;

&lt;h2&gt;
  
  
  Disadvantages of star schema
&lt;/h2&gt;

&lt;p&gt;Redundant data in dimension tables increases storage cost.&lt;br&gt;
Updates or changes in dimensions can cause data inconsistency.&lt;br&gt;
Not ideal for very large or complex datasets.&lt;/p&gt;

&lt;h2&gt;
  
  
  Advantages of snow flake schema
&lt;/h2&gt;

&lt;p&gt;Reduced data redundancy.&lt;br&gt;
Better data integrity due to normalization.&lt;br&gt;
Easier maintenance updates to dimension data propagate automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Disadvantages of snow flake schema .
&lt;/h2&gt;

&lt;p&gt;Complex queries with multiple joins slower performance.&lt;br&gt;
Harder for business users to understand.&lt;br&gt;
Slightly more difficult to design and maintain.&lt;/p&gt;

&lt;h3&gt;
  
  
  Where to use  snow flake schema.
&lt;/h3&gt;

&lt;p&gt;You have a large and complex database with many hierarchical relationships.&lt;br&gt;
Data consistency and storage efficiency are more important than query speed.&lt;br&gt;
You need a well-organized structure for detailed analysis and reporting.&lt;/p&gt;

&lt;h3&gt;
  
  
  Where to use star schema.
&lt;/h3&gt;

&lt;p&gt;Data Warehouses and Data Marts.&lt;br&gt;
Business Intelligence  and Analytics Platforms.&lt;br&gt;
Management Dashboards and Reporting Systems.&lt;br&gt;
Ad-Hoc Analysis Environments.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>#Raw data security</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Wed, 08 Oct 2025 09:51:46 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/raw-data-security-4jf4</link>
      <guid>https://dev.to/enock_kipngetich/raw-data-security-4jf4</guid>
      <description>&lt;p&gt;&lt;a href="https://www.google.com/imgres?q=data%20analysis%20images&amp;amp;imgurl=https%3A%2F%2Fwww.simplilearn.com%2Fice9%2Ffree_resources_article_thumb%2FWhat_is_Data_Analysis.jpg&amp;amp;imgrefurl=https%3A%2F%2Fwww.simplilearn.com%2Fdata-analysis-methods-process-types-article&amp;amp;docid=kDHjxOzq3zlBJM&amp;amp;tbnid=tz18iGnDGgy5eM&amp;amp;vet=12ahUKEwjtrfzQqZSQAxXvW0EAHSusPMoQM3oECBgQAA..i&amp;amp;w=848&amp;amp;h=477&amp;amp;hcb=2&amp;amp;ved=2ahUKEwjtrfzQqZSQAxXvW0EAHSusPMoQM3oECBgQAA" rel="noopener noreferrer"&gt;https://www.google.com/imgres?q=data%20analysis%20images&amp;amp;imgurl=https%3A%2F%2Fwww.simplilearn.com%2Fice9%2Ffree_resources_article_thumb%2FWhat_is_Data_Analysis.jpg&amp;amp;imgrefurl=https%3A%2F%2Fwww.simplilearn.com%2Fdata-analysis-methods-process-types-article&amp;amp;docid=kDHjxOzq3zlBJM&amp;amp;tbnid=tz18iGnDGgy5eM&amp;amp;vet=12ahUKEwjtrfzQqZSQAxXvW0EAHSusPMoQM3oECBgQAA..i&amp;amp;w=848&amp;amp;h=477&amp;amp;hcb=2&amp;amp;ved=2ahUKEwjtrfzQqZSQAxXvW0EAHSusPMoQM3oECBgQAA&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>#Row level data security in power bi</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Tue, 07 Oct 2025 11:55:32 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/row-level-data-security-in-power-bi-3e4n</link>
      <guid>https://dev.to/enock_kipngetich/row-level-data-security-in-power-bi-3e4n</guid>
      <description></description>
      <category>analytics</category>
      <category>microsoft</category>
      <category>security</category>
    </item>
    <item>
      <title>why excel is still relevant in the era of power bi and python</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Sat, 04 Oct 2025 11:38:47 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-the-era-of-power-bi-and-python-d40</link>
      <guid>https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-the-era-of-power-bi-and-python-d40</guid>
      <description>&lt;p&gt;

&lt;/p&gt;
&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-this-era-of-power-bi-python-4dpl" class="crayons-story__hidden-navigation-link"&gt;#Why excel is still relevant in this era of Power bi $ Python&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/enock_kipngetich" class="crayons-avatar  crayons-avatar--l  "&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%2Fuser%2Fprofile_image%2F3508746%2Fea741fae-722e-4e34-baa5-ffeab403a530.png" alt="enock_kipngetich profile" class="crayons-avatar__image"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/enock_kipngetich" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Enock Kipngetich
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Enock Kipngetich
                
              
              &lt;div id="story-author-preview-content-2891298" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/enock_kipngetich" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&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%2Fuser%2Fprofile_image%2F3508746%2Fea741fae-722e-4e34-baa5-ffeab403a530.png" class="crayons-avatar__image" alt=""&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Enock Kipngetich&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-this-era-of-power-bi-python-4dpl" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Oct 4 '25&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-this-era-of-power-bi-python-4dpl" id="article-link-2891298"&gt;
          #Why excel is still relevant in this era of Power bi $ Python
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/beginners"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;beginners&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/excel"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;excel&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-this-era-of-power-bi-python-4dpl" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;1&lt;span class="hidden s:inline"&gt;&amp;nbsp;reaction&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-this-era-of-power-bi-python-4dpl#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              &lt;span class="hidden s:inline"&gt;Add&amp;nbsp;Comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            1 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;




</description>
      <category>beginners</category>
      <category>excel</category>
    </item>
    <item>
      <title>#Why excel is still relevant in this era of Power bi $ Python</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Sat, 04 Oct 2025 09:29:10 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-this-era-of-power-bi-python-4dpl</link>
      <guid>https://dev.to/enock_kipngetich/why-excel-is-still-relevant-in-this-era-of-power-bi-python-4dpl</guid>
      <description>&lt;h3&gt;
  
  
  Excel
&lt;/h3&gt;

&lt;p&gt;Has been the cornerstone of data analysis, business reporting, and financial modeling.&lt;br&gt;
 Accessibility and Familiarity&lt;br&gt;
 Easy to learn and use &lt;br&gt;
Most professionals already know the basics. Universally available.&lt;br&gt;
 Flexible budgeting to dash board creation.&lt;/p&gt;

&lt;h3&gt;
  
  
  Limitations of excel.
&lt;/h3&gt;

&lt;p&gt;It struggles with very large datasets.&lt;br&gt;
Manual errors are common when formulas or links break.&lt;br&gt;
Collaboration can be clunky compared to web-based platforms.&lt;/p&gt;

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

&lt;p&gt;Excel is far from obsolete.&lt;br&gt;
It remains the gateway to data analytics a versatile tool that bridges traditional spreadsheet work and modern data science.&lt;br&gt;
In the era of Power BI and Python, Excel’s relevance lies in its adaptability. &lt;br&gt;
Rather than being replaced, it has become the foundation upon which more advanced analytics tools are built.&lt;br&gt;
Organizations value accessibility, collaboration, and flexibility, Excel will continue to be a vital part of the analytics ecosystem.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>excel</category>
    </item>
    <item>
      <title># Key concepts of a schema</title>
      <dc:creator>Enock Kipngetich</dc:creator>
      <pubDate>Tue, 23 Sep 2025 11:18:32 +0000</pubDate>
      <link>https://dev.to/enock_kipngetich/-key-concepts-of-a-schema-1il2</link>
      <guid>https://dev.to/enock_kipngetich/-key-concepts-of-a-schema-1il2</guid>
      <description>&lt;h1&gt;
  
  
  Introduction
&lt;/h1&gt;

&lt;p&gt;It is a blue print of a data base.&lt;/p&gt;

&lt;h2&gt;
  
  
  Types of schemas
&lt;/h2&gt;

&lt;p&gt;1.Star schema&lt;br&gt;
 2.Snowflake schema&lt;/p&gt;

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