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 75 802 subscribers, ranking 2 117 in the Education category and 4 312 in the India region.
๐ Audience metrics and dynamics
Since its creation on ะฝะตะฒัะดะพะผะพ, the project has demonstrated rapid growth, gathering an audience of 75 802 subscribers.
According to the latest data from 16 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 924 over the last 30 days and by 38 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 3.47%. Within the first 24 hours after publication, content typically collects 1.42% reactions from the total number of subscribers.
- Post reach: On average, each post receives 2 629 views. Within the first day, a publication typically gains 1 075 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 5.
- 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 17 June, 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.
df.info(), df.describe(), df.isnull().sum()
2๏ธโฃ Handle Missing & Duplicate Data
โบ Remove or fill missing values
โบ Use: dropna(), fillna(), drop_duplicates()
3๏ธโฃ Univariate Analysis
โบ Analyze one feature at a time
โบ Tools: histograms, box plots, value_counts()
4๏ธโฃ Bivariate & Multivariate Analysis
โบ Explore relations between features
โบ Tools: scatter plots, heatmaps, pair plots (Seaborn)
5๏ธโฃ Outlier Detection
โบ Use box plots, Z-score, IQR method
โบ Crucial for clean modeling
6๏ธโฃ Correlation Check
โบ Find highly correlated features
โบ Use: df.corr() + Seaborn heatmap
7๏ธโฃ Feature Engineering Ideas
โบ Create or remove features based on insights
๐ Tools: Python (Pandas, Matplotlib, Seaborn)
๐ฏ Mini Project: Try EDA on Titanic or Iris dataset!
๐ฌ Double Tap โค๏ธ for more data science tips & tutorials!scipy.stats, statsmodels, pandas
Visualization: seaborn, matplotlib
๐ก Quick tip: Use these formulas to crush interviews and build solid ML foundations!
๐ฌ Tap โค๏ธ for moredef factorial(n):
return 1 if n == 0 else n * factorial(n - 1)
2๏ธโฃ Find second largest number:
nums = [10, 20, 30]
second = sorted(set(nums))[-2]
3๏ธโฃ Remove punctuation from string:
import string
s = "Hello, world!"
s_clean = s.translate(str.maketrans('', '', string.punctuation))
4๏ธโฃ Find common elements in two lists:
a = [1, 2, 3]
b = [2, 3, 4]
common = list(set(a) & set(b))
5๏ธโฃ Convert list to string:
words = ['Python', 'is', 'fun']
sentence = ' '.join(words)
6๏ธโฃ Reverse words in sentence:
s = "Hello World"
reversed_s = ' '.join(s.split()[::-1])
7๏ธโฃ Check anagram:
def is_anagram(a, b):
return sorted(a) == sorted(b)
8๏ธโฃ Get unique values from list of dicts:
data = [{'a':1}, {'a':2}, {'a':1}]
unique = set(d['a'] for d in data)
9๏ธโฃ Create dict from range:
squares = {x: x*x for x in range(5)}
๐ Sort list of tuples by second item:
pairs = [(1, 3), (2, 1)]
sorted_pairs = sorted(pairs, key=lambda x: x)
๐ฌ Tap โค๏ธ for more Python tips & interview snippets!matplotlib.pyplot โ Basic plots
โฆ seaborn โ Cleaner, statistical plots
1๏ธโฃ Line Chart โ to show trends over time
import matplotlib.pyplot as plt
days = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri']
sales = [200, 450, 300, 500, 650]
plt.plot(days, sales, marker='o')
plt.title('Daily Sales')
plt.xlabel('Day')
plt.ylabel('Sales')
plt.grid(True)
plt.show()
2๏ธโฃ Bar Chart โ compare categories
products = ['A', 'B', 'C', 'D']
revenue = [1000, 1500, 700, 1200]
plt.bar(products, revenue, color='skyblue')
plt.title('Revenue by Product')
plt.xlabel('Product')
plt.ylabel('Revenue')
plt.show()
3๏ธโฃ Pie Chart โ show proportions
labels = ['iOS', 'Android', 'Others']
market_share = [40, 55, 5]
plt.pie(market_share, labels=labels, autopct='%1.1f%%', startangle=140)
plt.title('Mobile OS Market Share')
plt.axis('equal') # perfect circle
plt.show()
4๏ธโฃ Histogram โ frequency distribution
ages = [22, 25, 27, 30, 32, 35, 35, 40, 45, 50, 52, 60]
plt.hist(ages, bins=5, color='green', edgecolor='black')
plt.title('Age Distribution')
plt.xlabel('Age Groups')
plt.ylabel('Frequency')
plt.show()
5๏ธโฃ Scatter Plot โ relationship between variables
income = [30, 35, 40, 45, 50, 55, 60]
spending = [20, 25, 30, 32, 35, 40, 42]
plt.scatter(income, spending, color='red')
plt.title('Income vs Spending')
plt.xlabel('Income (k)')
plt.ylabel('Spending (k)')
plt.show()
6๏ธโฃ Heatmap โ correlation matrix (with Seaborn)
import seaborn as sns
import pandas as pd
data = {'Math': [90, 80, 85, 95],
'Science': [85, 89, 92, 88],
'English': [78, 75, 80, 85]}
df = pd.DataFrame(data)
corr = df.corr()
sns.heatmap(corr, annot=True, cmap='coolwarm')
plt.title('Subject Score Correlation')
plt.show()
โโโโโโโโ
๐ก Pro Tip: Customize titles, labels & colors for clarity and audience style!
Available now! Telegram Research 2025 โ the year's key insights 
