Data Science & Machine Learning
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free For collaborations: @love_data
Больше📈 Аналитический обзор Telegram-канала Data Science & Machine Learning
Канал Data Science & Machine Learning (@datasciencefun) языкового сегмента Английский является активным участником. Сейчас сообщество объединяет 77 285 подписчиков, занимая 2 006 место в категории Образование и 4 043 место в регионе Индия.
📊 Показатели аудитории и динамика
С момента создания невідомо проект демонстрирует стремительный рост, собрав аудиторию из 77 285 подписчиков.
Согласно последним данным от 26 августа, 2026, канал показывает стабильную активность. За последние 30 дней изменение числа участников составило 412, а за последние 24 часа — -2, при этом общий охват остаётся высоким.
- Статус верификации: Не верифицирован
- Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 2.60%. В первые 24 часа после публикации контент обычно набирает 1.13% реакций от общего числа подписчиков.
- Охват публикаций: В среднем каждый пост получает 2 006 просмотров. В течение первых суток публикация набирает 875 просмотров.
- Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 3.
- Тематические интересы: Контент сосредоточен на ключевых темах, таких как learning, accuracy, distribution, panda, dataset.
📝 Описание и контентная политика
Автор описывает ресурс как площадку для выражения субъективного мнения:
“Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free
For collaborations: @love_data”
Благодаря высокой частоте обновлений (последние данные получены 27 августа, 2026) канал поддерживает актуальность и высокий уровень охвата публикаций. Аналитика показывает, что аудитория активно взаимодействует с контентом, что делает его важной точкой влияния в категории Образование.
import numpy as np
data = [10, 20, 30, 40, 50, 60, 70]
q1 = np.percentile(data, 25)
median = np.percentile(data, 50)
q3 = np.percentile(data, 75)
iqr = q3 - q1
print("Q1:", q1, "Median:", median, "Q3:", q3, "IQR:", iqr)
🔹 14. Descriptive Statistics in Pandas
import pandas as pd
df = pd.DataFrame({"Salary": [30000, 35000, 40000, 45000, 50000]})
print(df["Salary"].describe())
describe() gives Count, Mean, Std, Min, 25%, 50%, 75%, Max
🔹 15. Real-World Example
Transactions: Q1=₹500, Median=₹1000, Q3=₹2000 → IQR=₹1500
Use IQR to flag fraud, bulk orders, errors, or VIP customers. Investigate before deleting.
🔹 16. Range vs IQR
Range: Easy but outlier-sensitive
IQR: Middle 50% only, robust to outliers
🔹 17. Percentile vs Percentage
Percentage = out of 100.
Ex: 80% marks
Percentile = relative position.
Ex: 90th percentile
🔹 18. Common Mistakes
❌ 90th percentile = 90% score
❌ Deleting all outliers blindly
❌ Thinking IQR covers all data
🎯 Practice Questions
1. Range of 10, 20, 30, 40, 50 = ?
2. Median = which percentile?
3. Q1=25, Q3=75 → IQR = ?
4. Upper outlier boundary formula?
5. 5 components of five-number summary?
🎯 Key Takeaways
✅ Range = Max - Min
✅ Q1=25th, Q2=50th=Median, Q3=75th
✅ IQR = Q3 - Q1
✅ 5-number summary = Min, Q1, Median, Q3, Max
✅ Percentile ≠ Percentage
👉 Double Tap ❤️ For More
-----
2.46 ₽ · /balance_helploc = 50 represents the mean. scale = 10 represents the standard deviation.
🔹 17. Common Mistakes
❌ Confusing PMF and PDF → Remember: PMF → Discrete, PDF → Continuous
❌ Thinking PDF value is probability → For a continuous distribution, the PDF value at a point is a density, not the probability of that exact value. Probability comes from the area over an interval.
❌ Forgetting that CDF is cumulative → CDF always represents: P(X ≤ x)
🎯 Practice Questions
1. What is the difference between a discrete and continuous random variable?
2. What is PMF used for?
3. What does a PDF represent?
4. What does CDF calculate?
5. Name three probability distributions commonly used in Data Science.
🎯 Key Takeaways
✅ Probability distributions describe how probabilities are distributed across possible outcomes.
✅ Discrete variables have countable outcomes.
✅ Continuous variables can take infinitely many values within a range.
✅ PMF is used for discrete random variables.
✅ PDF is used for continuous random variables.
✅ CDF gives the cumulative probability up to a particular value.
✅ Normal, Binomial, and Poisson distributions are important distributions for Data Scientists.
Understanding probability distributions gives you the foundation needed for statistical inference, hypothesis testing, machine learning, and advanced Data Science.
👉 Double Tap ❤️ For More
-----
2.42 ₽ · /balance_helpimport numpy as np
data = np.random.normal(
loc=50,
scale=10,
size=1000
)
print(data[:5])