Data science/ML/AI
Data science and machine learning hub Python, SQL, stats, ML, deep learning, projects, PDFs, roadmaps and AI resources. For beginners, data scientists and ML engineers π https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist
Show moreπ Analytical overview of Telegram channel Data science/ML/AI
Channel Data science/ML/AI (@datascience_bds) in the English language segment is an active participant. Currently, the community unites 13 926 subscribers, ranking 8 885 in the Technologies & Applications category and 28 496 in the India region.
π Audience metrics and dynamics
Since its creation on Π½Π΅Π²ΡΠ΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 13 926 subscribers.
According to the latest data from 15 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 25 over the last 30 days and by 4 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 7.07%. Within the first 24 hours after publication, content typically collects 2.05% reactions from the total number of subscribers.
- Post reach: On average, each post receives 985 views. Within the first day, a publication typically gains 285 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 panda, learning, row, api, ethic.
π Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
βData science and machine learning hub
Python, SQL, stats, ML, deep learning, projects, PDFs, roadmaps and AI resources.
For beginners, data scientists and ML engineers
π https://rebrand.ly/bigdatachannels
DMCA: @disclosure_bds
Contact: @mldatasci...β
Thanks to the high frequency of updates (latest data received on 16 September, 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 Technologies & Applications category.
df.info()You'll often notice many text columns have the type:
objectIf a column contains repeated values like:
London London London Paris Paris Berlinconvert it to:
categoryInstead of storing the full text every time, Pandas stores each unique value once and references it internally. On large datasets, memory usage can drop dramatically.
Color = RedYou can't simply write:
Red = 1 Blue = 2 Green = 3The model might think Green > Blue > Red, even though colors have no natural order. Instead, we create separate columns:
Red 1 0 0 Blue 0 1 0 Green 0 0 1This is called One-Hot Encoding. It represents categories without introducing fake relationships.
SELECT e.name, e.salary
FROM employees e
WHERE e.salary > (
SELECT AVG(salary)
FROM employees
WHERE department = e.department
);if/else
Suppose you want to classify customers:
spending >= 1000 β VIP spending >= 500 β Regular otherwise β LowYou could write a complicated function. Or:
import numpy as np
df["segment"] = np.select(
[
df["spending"] >= 1000,
df["spending"] >= 500
],
[
"VIP",
"Regular"
],
default="Low"
)
Now the rules are visible directly in the code.
This becomes especially useful when you have several conditions.