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
Show more📈 Analytical overview of Telegram channel Data Science & Machine Learning
Channel Data Science & Machine Learning (@datasciencefun) in the English language segment is an active participant. Currently, the community unites 77 276 subscribers, ranking 2 006 in the Education category and 4 043 in the India region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 77 276 subscribers.
According to the latest data from 26 August, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 412 over the last 30 days and by -2 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 2.60%. Within the first 24 hours after publication, content typically collects 1.13% reactions from the total number of subscribers.
- Post reach: On average, each post receives 2 006 views. Within the first day, a publication typically gains 875 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 3.
- Thematic interests: Content is focused on key topics such as learning, accuracy, distribution, panda, dataset.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“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”
Thanks to the high frequency of updates (latest data received on 27 August, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Education category.
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])