Skip to main content

Data Analytics - What is Data Analytics, Steps in data Analytics, Purpose of Data Analytics

 

Data Analytics - Data Analysis
Data Analytics - What is Data Analytics - Steps in Data Analytics - Purpose of Data Analytics

What is Data Analytics?

Data analytics is a subfield of  Data Science. Data analytics is the process of using statistical methods, algorithms and visualization techniques to analyze data to extract meaningful insights, identify different trends and answer specific questions.

It helps companies, organizations and different industries to know market trends, their performance, and relationships in their data from which they can make decision making. Basically, Data analysis is done for decision-making.

Process of Data Analytics:

The steps included in data analytics are 
  1. Collecting the Data 
  2. Cleaning the Data 
  3. Transforming the Data
  4. Data Analysis
  5. Data Visualization
  6. Decision Making
How to do data analysis?

Steps Of Data Analytics

1:Collecting the Data:

Collecting the data is the First step, to which we collect data from different platforms for further analysis. 

2:Cleaning the Data:

Cleaning the data is the second step from which we remove noise and outliers to clean our data.
We use different tools for data cleaning like Excel, SQL, R and Python. 

3:Transforming The Data:

Transforming the Data means converting the cleaned data to a more structured and usable form to understand easily. We use these tools and languages for data transformation. 
  1. Python:

    • Pandas
    • NumPy
    • Matplotlib
    • Seaborn
    • SciPy
  2. R:

    • RStudio
    • dplyr
    • tidyr
    • ggplot2
  3. SQL:

    • MySQL
    • PostgreSQL
    • SQLite
  4. Excel 


4:Data analysis:

After doing the transformation we do data analysis on the data to extract all the information according to our needs. From the above tools and computer languages, we do this.

5:Data Visualization: 

After the data analysis, we do data visualisation to understand our data in an easy form to understand easily. We use different tools and computer languages
  1. Python:

    • Matplotlib
    • Seaborn
    • Plotly
    • Bokeh
  2. R:

    • ggplot2
  3. Tableau

  4. Power BI


6:Decision Making:

After this, we make decisions above our analysis. and solve the problems for which we do data analysis.

Purpose of Data Analytics:

The purpose of data analytics is to enable organizations to make smarter decisions, improve efficiency, predict market trends, enhance customer experiences, and ultimately increase profitability.












Comments

Popular posts from this blog

Jupyter Notebook Edit Mode and Command Mode

In Jupyter Notebook, there are two main modes that you can switch between: Edit Mode and Command Mode . The "ln" command is used to switch between "Full", "Edit", and "Mode" - "Mode" is the default and least restrictive mode, "Edit" allows the user to edit non-executable cells, and "Full" prevents all editing by default. You can also use the "Flip Full/Edit/Mode" shortcut (F3) to quickly toggle between these modes. Jupyter Notebook  Edit Mode: Jupyter notebook Edit Mode In a Jupyter Notebook, edit mode refers to the state where cells can be edited, and changes can be made to previously typed code or text. Itis state where you can modify the content of a cell, such as adding or editing code or text. When a cell is in edit mode, the cell's border will be green, and a cursor will appear, allowing you to type and make changes. Example: Entering Edit Mode Double-click on a cell, or press Enter while the c...

Loops in Python - For Loop, While Loop and Nested Loops

Understanding Loops in Python: A Beginner's Guide: Loops are a fundamental concept in programming, allowing you to repeat a block of code multiple times without writing it out repeatedly. This guide will introduce you to loops in Python, focusing on two main types: for loops and while loops. We'll also explore some practical examples to solidify your understanding. What Are Loops? In programming, loops are used to automate repetitive tasks. Instead of writing the same code multiple times, you can use a loop to execute it repeatedly until a certain condition is met. 1. For Loops: A for  loop in Python iterates over a sequence (such as a list, tuple, string, or range) and executes a block of code for each item in the sequence. Here's the basic syntax: Example 1: Iterating Over a List Output: Example 2: Using the Range Function The range() function generates a sequence of numbers, which is particularly useful in loops. Example 3. Nested For Loops: You can use a loop inside...