<?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: Mistry Khateyi</title>
    <description>The latest articles on DEV Community by Mistry Khateyi (@mistry_khateyi_5e70a68f96).</description>
    <link>https://dev.to/mistry_khateyi_5e70a68f96</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%2F3951193%2Fe4312173-c202-4cc3-a140-4c6ac740ba3f.jpg</url>
      <title>DEV Community: Mistry Khateyi</title>
      <link>https://dev.to/mistry_khateyi_5e70a68f96</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mistry_khateyi_5e70a68f96"/>
    <language>en</language>
    <item>
      <title>Understands Relationships, Schemas and Joins in Data Analytics for Beginners.</title>
      <dc:creator>Mistry Khateyi</dc:creator>
      <pubDate>Mon, 29 Jun 2026 12:14:05 +0000</pubDate>
      <link>https://dev.to/mistry_khateyi_5e70a68f96/understands-relationships-schemas-and-joins-in-data-analytics-for-beginners-31m3</link>
      <guid>https://dev.to/mistry_khateyi_5e70a68f96/understands-relationships-schemas-and-joins-in-data-analytics-for-beginners-31m3</guid>
      <description>&lt;h1&gt;
  
  
  Introduction.
&lt;/h1&gt;

&lt;p&gt;One of the most difficult aspects for a data analyst looking to become successful is learning how data from various tables relates. SQL queries, SQL Dashboards in Power BI, or designing a database, three things are seen throughout:&lt;/p&gt;

&lt;p&gt;*Relationships&lt;br&gt;
*Schemas&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Joins&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The below concepts are the foundation of relational databases. Once you know them, you will find data easier to analyze.&lt;br&gt;
In this article, we will discuss each concept, and provide some examples.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8hsx8lrd1m1pm9veo03z.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8hsx8lrd1m1pm9veo03z.png" alt="Flowchart illustrating how raw data is transformed into insights through relationships, database schema design, SQL joins, and interactive dashboards." width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h1&gt;
  
  
  What is a database relationship?
&lt;/h1&gt;

&lt;p&gt;A relationship is a linkage between two or more tables by the same column.&lt;br&gt;
Imagine an online store with two tables:&lt;/p&gt;
&lt;h2&gt;
  
  
  Customers
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;CustomerID&lt;/th&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;101&lt;/td&gt;
&lt;td&gt;Alice&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;102&lt;/td&gt;
&lt;td&gt;Brian&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;103&lt;/td&gt;
&lt;td&gt;Carol&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;h2&gt;
  
  
  Orders
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;OrderID&lt;/th&gt;
&lt;th&gt;CustomerID&lt;/th&gt;
&lt;th&gt;Product&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;5001&lt;/td&gt;
&lt;td&gt;101&lt;/td&gt;
&lt;td&gt;Laptop&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5002&lt;/td&gt;
&lt;td&gt;101&lt;/td&gt;
&lt;td&gt;Mouse&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5003&lt;/td&gt;
&lt;td&gt;103&lt;/td&gt;
&lt;td&gt;Keyboard&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Notice that the two tables have a column named CustomerID.&lt;br&gt;
The column in that column is the person who placed the order.&lt;br&gt;
If there were no relationships, each table would be considered a separate table.&lt;/p&gt;
&lt;h1&gt;
  
  
  Types of relationships
&lt;/h1&gt;
&lt;h2&gt;
  
  
  One-to-one relationship
&lt;/h2&gt;

&lt;p&gt;One row in one table matches one and only one row in another.&lt;/p&gt;
&lt;h2&gt;
  
  
  One to many relationship
&lt;/h2&gt;

&lt;p&gt;This is the most common relationship. This relationship is commonly leveraged in power BI models.&lt;/p&gt;
&lt;h2&gt;
  
  
  Many to many relationship
&lt;/h2&gt;

&lt;p&gt;There are several records in one table that are associated with several records in another table.&lt;/p&gt;
&lt;h1&gt;
  
  
  What is database schema
&lt;/h1&gt;

&lt;p&gt;Is the logical organization of a database is called a schema.&lt;/p&gt;

&lt;p&gt;It defines:&lt;br&gt;
*Tables&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Columns&lt;/li&gt;
&lt;li&gt;Relationships&lt;/li&gt;
&lt;li&gt;Constraints&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Database designers build schemas before data is stored, similar to how an architect designs a building before it is built. For example &lt;strong&gt;the&lt;/strong&gt; &lt;strong&gt;blueprint of a building.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Common Schema Types
&lt;/h2&gt;
&lt;h2&gt;
  
  
  Star Schema
&lt;/h2&gt;

&lt;p&gt;The best model to use in Power BI. It consists of :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;One Fact table&lt;/li&gt;
&lt;li&gt;Multiple Dimension tables
For example;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;            Products
                |
Customers ---- Sales ---- Dates
                |
            Employees
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Advantages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fast performance&lt;/li&gt;
&lt;li&gt;Easy to understand&lt;/li&gt;
&lt;li&gt;Optimized for reporting&lt;/li&gt;
&lt;li&gt;Recommended by Microsoft&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Snowflake Schema
&lt;/h2&gt;

&lt;p&gt;A snowflake schema forces dimension tables to be broken into other tables.&lt;br&gt;
Example&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Sales
   |
Products
   |
Category
   |
Department
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Advantages&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reduces redundancy&lt;/li&gt;
&lt;li&gt;Better data consistency&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Disadvantages&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More joins&lt;/li&gt;
&lt;li&gt;More complex queries&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Galaxy Schema
&lt;/h2&gt;

&lt;p&gt;Also known as a Fact Constellation. It has several fact tables with dimension tables.&lt;br&gt;
Example&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Sales ------ Customers
   |
Inventory ---- Products
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is normally used in large organization.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is a SQL Join?
&lt;/h2&gt;

&lt;p&gt;A join is a method used to create a result set from two or more tables based on the key column of one table that matches the key column of another.&lt;br&gt;
Joins are essential for being able to query data from multiple tables.&lt;/p&gt;
&lt;h2&gt;
  
  
  INNER JOIN
&lt;/h2&gt;

&lt;p&gt;Its Only the matching records will be returned.&lt;br&gt;
Example&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;SELECT&lt;/span&gt;
    &lt;span class="n"&gt;Customers&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Name&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;Orders&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Product&lt;/span&gt;
&lt;span class="k"&gt;FROM&lt;/span&gt; &lt;span class="n"&gt;Customers&lt;/span&gt;
&lt;span class="k"&gt;INNER&lt;/span&gt; &lt;span class="k"&gt;JOIN&lt;/span&gt; &lt;span class="n"&gt;Orders&lt;/span&gt;
&lt;span class="k"&gt;ON&lt;/span&gt; &lt;span class="n"&gt;Customers&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;CustomerID&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;Orders&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;CustomerID&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Result&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;Product&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Alice&lt;/td&gt;
&lt;td&gt;Laptop&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Alice&lt;/td&gt;
&lt;td&gt;Mouse&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Carol&lt;/td&gt;
&lt;td&gt;Keyboard&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Brian is not included as he has no orders.&lt;/p&gt;

&lt;h2&gt;
  
  
  LEFT JOIN
&lt;/h2&gt;

&lt;p&gt;Selects all rows from left table.&lt;/p&gt;

&lt;p&gt;If there are matching records in the right table, they are added.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;SELECT&lt;/span&gt;
    &lt;span class="n"&gt;Customers&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Name&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;Orders&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Product&lt;/span&gt;
&lt;span class="k"&gt;FROM&lt;/span&gt; &lt;span class="n"&gt;Customers&lt;/span&gt;
&lt;span class="k"&gt;LEFT&lt;/span&gt; &lt;span class="k"&gt;JOIN&lt;/span&gt; &lt;span class="n"&gt;Orders&lt;/span&gt;
&lt;span class="k"&gt;ON&lt;/span&gt; &lt;span class="n"&gt;Customers&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;CustomerID&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;Orders&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;CustomerID&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Result&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;Product&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Alice&lt;/td&gt;
&lt;td&gt;Laptop&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Alice&lt;/td&gt;
&lt;td&gt;Mouse&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Brian&lt;/td&gt;
&lt;td&gt;NULL&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Carol&lt;/td&gt;
&lt;td&gt;Keyboard&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  RIGHT JOIN
&lt;/h2&gt;

&lt;p&gt;Returns all the rows from the right table.&lt;br&gt;
If there is a mismatch on the left side then those matches are null.&lt;/p&gt;

&lt;h2&gt;
  
  
  FULL OUTER JOIN
&lt;/h2&gt;

&lt;p&gt;Returns:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;All matching records
All records that do not match between the two tables. This can be helpful to detect missing data.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  CROSS JOIN
&lt;/h2&gt;

&lt;p&gt;Makes all possibilities.&lt;br&gt;
If one table has 10 rows and another table has 20 rows then the result contain.&lt;br&gt;
A table joins with itself. Useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Employee-manager relationships&lt;/li&gt;
&lt;li&gt;Organizational hierarchies&lt;/li&gt;
&lt;li&gt;Family trees&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Relationships vs Joins
&lt;/h2&gt;

&lt;p&gt;Relationships and joins are different, yet appear as if they are.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Relationships&lt;/th&gt;
&lt;th&gt;Joins&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Permanent join of tables&lt;/td&gt;
&lt;td&gt;Temporary operations&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Defined in the data model&lt;/td&gt;
&lt;td&gt;Written in SQL&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Automatically used by Power BI&lt;/td&gt;
&lt;td&gt;Used when you query the data&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Enhance the navigation of the model&lt;/td&gt;
&lt;td&gt;Add data to the model during execution&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Best Practices
&lt;/h2&gt;

&lt;p&gt;Use a &lt;strong&gt;Star Schema&lt;/strong&gt; as much as you can&lt;/p&gt;

&lt;p&gt;1.create relationships using unique keys.&lt;/p&gt;

&lt;p&gt;If possible, do not use many-to-many relationships.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Use meaningful primary keys.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;3.Minimize unnecessary joins.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Maintain dimension tables with no duplicate data.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Real-World Example
&lt;/h2&gt;

&lt;p&gt;Suppose you are developing a Sales Dashboard in Power BI.&lt;br&gt;
You might have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Sales&lt;/strong&gt; (Fact table)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Customers&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Products&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Date&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Regions&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The relationships link the tables together and Power BI uses the relationships to sum up sales by customer, by product, by month, or by region. In SQL you would have to join the tables beforehand and then work out your results.&lt;/p&gt;

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

&lt;p&gt;The ability to understand relationships, schemas and joins are some of the most important skills for any Data Analyst. Relationships are the way that tables are related to each other, schemas provide a structure for the entire database, and joins allow to retrieve related data from other tables.&lt;br&gt;
Understanding these concepts will help you design more effective SQL queries, create efficient Power BI data models, and design scalable databases.&lt;/p&gt;

</description>
      <category>analytics</category>
      <category>database</category>
      <category>beginners</category>
      <category>datascience</category>
    </item>
    <item>
      <title>How Excel is applied in real world data analysis.</title>
      <dc:creator>Mistry Khateyi</dc:creator>
      <pubDate>Sun, 07 Jun 2026 19:52:56 +0000</pubDate>
      <link>https://dev.to/mistry_khateyi_5e70a68f96/how-excel-is-applied-in-real-world-data-analysis-2147</link>
      <guid>https://dev.to/mistry_khateyi_5e70a68f96/how-excel-is-applied-in-real-world-data-analysis-2147</guid>
      <description>&lt;p&gt;My initial entry into data analysis was my belief that it would require me to learn a complex programming language or use third party software, before I could begin working with data. My idea was that data analysts would be coding their whole day, using highly specialized tools. Upon starting my Data Science &amp;amp; Analytics journey, however, there was one of the most powerful and widely used tools in data analysis that I knew: Microsoft Excel.&lt;br&gt;
Microsoft Excel is a spreadsheet program designed to enable users to organize, calculate, analyze and visualize data. With the rise of sophisticated analytics tools like SQL, Python, and Power BI, you might wonder why Excel still plays a crucial role in many industries. While these new tools like SQL, Python, and Power BI have created a trend of more advanced data analytics, Excel is still an essential tool for many industries, largely because it is accessible, flexible, and effective for everyday data tasks.&lt;/p&gt;

&lt;h2&gt;
  
  
  Using Excel in the Real World
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Business Decision-Making
&lt;/h3&gt;

&lt;p&gt;There is a lot of data that businesses generate on a daily basis. Businesses can use Excel to keep track of sales, monitor stock levels, compare sales metrics across months and years, and make decisions based on those data.&lt;/p&gt;

&lt;p&gt;For instance, a retail outlet can use Excel to compare sales data from one month to the next, and determine what products are selling best during certain seasons. These insights can then be used by the managers to make decisions for inventory and market. Excel can present raw data in meaningful information, which helps us in making decisions based on data.Excel can present the raw data in meaningful information, which helps us make decisions based on data.&lt;/p&gt;

&lt;h3&gt;
  
  
  Financial Reporting and Budgeting
&lt;/h3&gt;

&lt;p&gt;Excel is the other programme used extensively in finance. It is essential to organizations for budget preparation, tracking of revenue, management of expenses, and financial forecasting.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SUM, SUMIF and SUMIFS&lt;/strong&gt; are particularly helpful functions. The SUM function totals the values in a range; &lt;strong&gt;SUMIF&lt;/strong&gt; and &lt;strong&gt;SUMIFS&lt;/strong&gt; can total values based on conditions. A business, for instance, can easily determine the company's sales for a specified area or department. These functions help in financial performance analysis and in creating accurate reports.&lt;/p&gt;

&lt;h3&gt;
  
  
  Marketing and Operational Performance
&lt;/h3&gt;

&lt;p&gt;Excel is a tool that is commonly used by marketing and operations teams for performance evaluations. Marketers can monitor clicks and conversions, advertising spend, and campaign results, and operations can monitor productivity and workflow.&lt;/p&gt;

&lt;p&gt;For example, a marketing team could use Excel to compare how well a different social media campaign was going from a performance perspective. They can measure conversion rates and costs to determine which ad campaign provides the highest ROI. Excel can also be used to clean and arrange datasets, making trend analysis much easier.&lt;/p&gt;

&lt;h2&gt;
  
  
  Formulas and features I have learned to use in Excel.
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Data cleaning and validation.
&lt;/h3&gt;

&lt;p&gt;The first thing I learned was clean data. Excel offers tools to remove duplicate data, fix inconsistent data and set up data validation rules. Clean data enhances the accuracy and helps to make decisions based on accurate information.&lt;/p&gt;

&lt;h3&gt;
  
  
  Sorting and Filtering
&lt;/h3&gt;

&lt;p&gt;Sorting and filtering can help to work with larger data sets. The characteristics enable the user to structure information, prioritize relevant information, and easily identify trends and patterns. Users can quickly narrow down what data fields are important and just look at thousands of rows, rather than reviewing them all individually.&lt;/p&gt;

&lt;h3&gt;
  
  
  Statistical Functions
&lt;/h3&gt;

&lt;p&gt;I've also picked up some helpful statistical functions:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AVERAGE&lt;/strong&gt; is a function that returns the average value of a data set.&lt;br&gt;
The middle value of a set of data is determined by using &lt;strong&gt;MEDIAN&lt;/strong&gt;.&lt;br&gt;
The most common value is calculated by &lt;strong&gt;MODE&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;These functions can provide you with various information regarding the same set of data. For instance, if examining the amount that customers spend, the median spending could give a better idea of the general spending habits of customers while the average might be skewed by some large purchases.&lt;br&gt;
Personal Reflection.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>datascience</category>
      <category>analytics</category>
    </item>
  </channel>
</rss>
