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
إظهار المزيد📈 نظرة تحليلية على قناة تيليجرام Data science/ML/AI
تُعد قناة Data science/ML/AI (@datascience_bds) في القطاع اللغوي الإنكليزية لاعباً نشطاً. يضم المجتمع حالياً 13 926 مشتركاً، محتلاً المرتبة 8 885 في فئة التكنولوجيات والتطبيقات والمرتبة 28 496 في منطقة الهند.
📊 مؤشرات الجمهور والحراك
منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 13 926 مشتركاً.
بحسب آخر البيانات بتاريخ 15 سبتمبر, 2026، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار 25، وفي آخر 24 ساعة بمقدار 4، مع بقاء الوصول العام مرتفعاً.
- حالة التحقق: غير موثّقة
- معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 7.07%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً 2.05% من ردود الفعل نسبةً إلى إجمالي المشتركين.
- وصول المنشورات: يحصل كل منشور على متوسط 985 مشاهدة. وخلال اليوم الأول يجمع عادةً 285 مشاهدة.
- التفاعلات والاستجابة: يتفاعل الجمهور بانتظام؛ متوسط التفاعلات لكل منشور يبلغ 5.
- الاهتمامات الموضوعية: يركز المحتوى على مواضيع رئيسية مثل panda, learning, row, api, ethic.
📝 الوصف وسياسة المحتوى
يصف المؤلف القناة بأنها مساحة للتعبير عن الآراء الذاتية:
“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...”
بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 16 سبتمبر, 2026) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التكنولوجيات والتطبيقات.
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.