Data Analytics
Perfect channel to learn Data Analytics Learn SQL, Python, Alteryx, Tableau, Power BI and many more For Promotions: @coderfun @love_data
Ko'proq ko'rsatish📈 Telegram kanali Data Analytics analitikasi
Data Analytics (@sqlspecialist) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 109 605 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 1 124-o'rinni va Hindiston mintaqasida 2 373-o'rinni egallagan.
📊 Auditoriya ko‘rsatkichlari va dinamika
невідомо sanasidan buyon loyiha tez o‘sib, 109 605 obunachiga ega bo‘ldi.
19 Iyun, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 624 ga, so‘nggi 24 soatda esa -15 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya o‘rtacha 3.26% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.27% ini tashkil etuvchi reaksiyalarni to‘playdi.
- Post qamrovi: Har bir post o‘rtacha 3 575 marta ko‘riladi; birinchi sutkada odatda 1 388 ta ko‘rish yig‘iladi.
- Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 9 ta reaksiya keladi.
- Tematik yo‘nalishlar: Kontent row, sql, analytic, analyst, visualization kabi asosiy mavzularga jamlangan.
📝 Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
“Perfect channel to learn Data Analytics
Learn SQL, Python, Alteryx, Tableau, Power BI and many more
For Promotions: @coderfun @love_data”
Yuqori yangilanish chastotasi (oxirgi ma’lumot 20 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Texnologiyalar & Aralashmalar toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.
SELECT department, COUNT(*)
FROM employees
WHERE salary > 50000
GROUP BY department
HAVING COUNT(*) > 5
ORDER BY COUNT(*) DESC
LIMIT 10;
💡 Note: Even though SELECT comes first when we write SQL, it's processed after WHERE, GROUP BY, and HAVING—knowing this prevents sneaky bugs!
💬 Tap ❤️ if this helped clarify things!import numpy as np
def remove_outliers(data):
q1 = np.percentile(data, 25)
q3 = np.percentile(data, 75)
iqr = q3 - q1
lower = q1 - 1.5 * iqr
upper = q3 + 1.5 * iqr
return [x for x in data if lower <= x <= upper]
2️⃣ Convert a nested list to a flat list.
nested = [[1, 2], [3, 4],]
flat = [item for sublist in nested for item in sublist]
3️⃣ Read a CSV file and count rows with nulls.
import pandas as pd
df = pd.read_csv('data.csv')
null_rows = df.isnull().any(axis=1).sum()
print("Rows with nulls:", null_rows)
4️⃣ How do you handle missing data in pandas?
⦁ Drop missing rows: df.dropna()
⦁ Fill missing values: df.fillna(value)
⦁ Check missing data: df.isnull().sum()
5️⃣ Explain the difference between loc[] and iloc[].
⦁ loc[]: Label-based indexing (e.g., row/column names)
Example: df.loc[0, 'Name']
⦁ iloc[]: Position-based indexing (e.g., row/column numbers)
Example: df.iloc
💬 Tap ❤️ for more!SELECT MAX(salary)
FROM employee
WHERE salary < (SELECT MAX(salary) FROM employee);
2️⃣ Get the top 3 products by revenue from sales table.
SELECT product_id, SUM(revenue) AS total_revenue
FROM sales
GROUP BY product_id
ORDER BY total_revenue DESC
LIMIT 3;
3️⃣ Use JOIN to combine customer and order data.
SELECT c.customer_name, o.order_id, o.order_date
FROM customers c
JOIN orders o ON c.customer_id = o.customer_id;
(That's an INNER JOIN—use LEFT JOIN to include all customers, even without orders.)
4️⃣ Difference between WHERE and HAVING?
⦁ WHERE filters rows before aggregation (e.g., on individual records).
⦁ HAVING filters rows after aggregation (used with GROUP BY on aggregates).
Example:
SELECT department, COUNT(*)
FROM employee
GROUP BY department
HAVING COUNT(*) > 5;
5️⃣ Explain INDEX and how it improves performance.
An INDEX is a data structure that improves the speed of data retrieval.
It works like a lookup table and reduces the need to scan every row in a table.
Especially useful for large datasets and on columns used in WHERE, JOIN, or ORDER BY—think 10x faster queries, but it slows inserts/updates a bit.
💬 Tap ❤️ for more!SELECT MAX(salary)
FROM employee
WHERE salary < (SELECT MAX(salary) FROM employee);
2️⃣ Get the top 3 products by revenue from sales table.
SELECT product_id, SUM(revenue) AS total_revenue
FROM sales
GROUP BY product_id
ORDER BY total_revenue DESC
LIMIT 3;
3️⃣ Use JOIN to combine customer and order data.
SELECT c.customer_name, o.order_id, o.order_date
FROM customers c
JOIN orders o ON c.customer_id = o.customer_id;
(That's an INNER JOIN—use LEFT JOIN to include all customers, even without orders.)
4️⃣ Difference between WHERE and HAVING?
⦁ WHERE filters rows before aggregation (e.g., on individual records).
⦁ HAVING filters rows after aggregation (used with GROUP BY on aggregates).
Example:
SELECT department, COUNT(*)
FROM employee
GROUP BY department
HAVING COUNT(*) > 5;
5️⃣ Explain INDEX and how it improves performance.
An INDEX is a data structure that improves the speed of data retrieval.
It works like a lookup table and reduces the need to scan every row in a table.
Especially useful for large datasets and on columns used in WHERE, JOIN, or ORDER BY—think 10x faster queries, but it slows inserts/updates a bit.
💬 Tap ❤️ for more!import sqlite3
conn = sqlite3.connect('data.db')
cursor = conn.cursor()
3️⃣0️⃣ What is the difference between.loc and.iloc in Pandas?
⦁ .loc[] is label-based indexing (e.g., df.loc by row label)
⦁ .iloc[] is position-based indexing (e.g., df.iloc by row number)
💬 Tap ❤️ for Part 5SELECT MAX(salary)
FROM employees
WHERE salary < (SELECT MAX(salary) FROM employees);
6️⃣ What is the difference between INNER JOIN and LEFT JOIN?
⦁ INNER JOIN: Returns only matching rows from both tables.
⦁ LEFT JOIN: Returns all rows from the left table, and matching rows from the right (NULLs if no match).
7️⃣ What are outliers? How do you detect and handle them?
Outliers are values that deviate significantly from the rest of the data.
Detection Methods:
⦁ IQR (Interquartile Range)
⦁ Z-score
Handling Methods:
⦁ Remove outliers
⦁ Cap values
⦁ Use transformation (e.g., log scale)
8️⃣ What is a Pivot Table?
A pivot table is a data summarization tool that allows quick grouping, aggregation, and analysis of data in spreadsheets or BI tools. It's useful for analyzing patterns and trends.
9️⃣ How do you validate a data model?
⦁ Split data into training and testing sets
⦁ Use cross-validation (e.g., k-fold)
⦁ Evaluate metrics like Accuracy, Precision, Recall, F1-Score, RMSE, etc.
🔟 What is Hypothesis Testing? Difference between t-test and z-test?
Hypothesis testing is a statistical method to test assumptions about a population.
⦁ T-test: Used when sample size is small and population variance is unknown.
⦁ Z-test: Used when sample size is large or population variance is known.
💬 Tap ❤️ for Part 2!
Endi mavjud! Telegram Tadqiqoti 2025 — yilning asosiy insaytlari 
