Operation Analytics and Investigating Metric Spike
Operation Analytics and Investigating Metric Spike
Project Description:
Approach:
This project involves gathering data sets and tables from various departments and
sources within the company, ensuring data quality and normalization during the
import into an SQL database. Through SQL queries and aggregations, the collected
data will be explored and analyzed to uncover patterns, trends, and anomalies. Key
performance metrics, such as daily engagement, sales, and customer satisfaction,
will be identified in collaboration with cross-functional teams and tracked using SQL
queries. Metric spikes will be investigated using SQL sub-queries, analyzing historical
data and collaborating with departments for contextual understanding. Insights and
recommendations derived from SQL analysis will drive process improvements,
workflow optimization, and automation.
Tech-Stack Used:
Insights:
Query:
select * from job_data;
select avg(t) as 'avg jobs reviewed per day per hour',
Submitted by: Harshali Naik
Output:
B. Throughput Analysis:
Objective: Calculate the 7-day rolling average of throughput (number of events per
second).
My Task: Write an SQL query to calculate the 7-day rolling average of throughput.
Additionally, explain whether you prefer using the daily metric or the 7-day rolling
average for throughput, and why.
Query:
Output:
Submitted by: Harshali Naik
Query:
Output:
Query:
Output:
Submitted by: Harshali Naik
Insights:
Query:
Output:
Query:
Output:
Submitted by: Harshali Naik
Submitted by: Harshali Naik
Submitted by: Harshali Naik
Query:
Output:
Query:
Output:
Query:
(sum(case when
email_category="email_clickthrough" then 1 else 0 end)/sum(case when
email_category="email_sent" then 1 else 0 end))*100 as click_rate
from (
select *,
case
when action in ("sent_weekly_digest", "sent_reengagement_email")
then ("email_sent")
when action in ("email_open") then ("email_opened")
when action in ("email_clickthrough") then ("email_clickthrough")
end as email_category
from email_events_table) as alias;
Output:
Result:
Operational analytics is the process of using data analysis and business intelligence
to improve efficiency and streamline everyday operations in real time. A subset of
business analytics, operational analytics is supported by data mining, artificial
intelligence, and machine learning. This project helped me understand the
importance of operation analytics. Through this project I am able to understand how
the companies use metric spike as a secret weapon. With an informed and proactive
approach, they can leverage insights to make data-backed decisions that optimize
their strategy and boost ROI.