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])