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
إظهار المزيد📈 نظرة تحليلية على قناة تيليجرام Data Science & Machine Learning
تُعد قناة Data Science & Machine Learning (@datasciencefun) في القطاع اللغوي الإنكليزية لاعباً نشطاً. يضم المجتمع حالياً 75 676 مشتركاً، محتلاً المرتبة 2 114 في فئة التعليم والمرتبة 4 348 في منطقة الهند.
📊 مؤشرات الجمهور والحراك
منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 75 676 مشتركاً.
بحسب آخر البيانات بتاريخ 12 يونيو, 2026، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار 923، وفي آخر 24 ساعة بمقدار 31، مع بقاء الوصول العام مرتفعاً.
- حالة التحقق: غير موثّقة
- معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 3.63%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً 1.36% من ردود الفعل نسبةً إلى إجمالي المشتركين.
- وصول المنشورات: يحصل كل منشور على متوسط 2 744 مشاهدة. وخلال اليوم الأول يجمع عادةً 1 026 مشاهدة.
- التفاعلات والاستجابة: يتفاعل الجمهور بانتظام؛ متوسط التفاعلات لكل منشور يبلغ 5.
- الاهتمامات الموضوعية: يركز المحتوى على مواضيع رئيسية مثل 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”
بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 13 يونيو, 2026) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التعليم.
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!CALENDAR
- DATEDIFF
- TODAY, DAY, MONTH, QUARTER, YEAR
AGGREGATE FUNCTIONS:
- SUM, SUMX, PRODUCT
- AVERAGE
- MIN, MAX
- COUNT
- COUNTROWS
- COUNTBLANK
- DISTINCTCOUNT
FILTER FUNCTIONS:
- CALCULATE
- FILTER
- ALL, ALLEXCEPT, ALLSELECTED, REMOVEFILTERS
- SELECTEDVALUE
TIME INTELLIGENCE FUNCTIONS:
- DATESBETWEEN
- DATESMTD, DATESQTD, DATESYTD
- SAMEPERIODLASTYEAR
- PARALLELPERIOD
- TOTALMTD, TOTALQTD, TOTALYTD
TEXT FUNCTIONS:
- CONCATENATE
- FORMAT
- LEN, LEFT, RIGHT
INFORMATION FUNCTIONS:
- HASONEVALUE, HASONEFILTER
- ISBLANK, ISERROR, ISEMPTY
- CONTAINS
LOGICAL FUNCTIONS:
- AND, OR, IF, NOT
- TRUE, FALSE
- SWITCH
RELATIONSHIP FUNCTIONS:
- RELATED
- USERRELATIONSHIP
- RELATEDTABLE
Remember, DAX is more about logic than the formulas.[1, 2, 3, 4]
import numpy as np
a = np.array([1, 2, 3, 4])
➤ 2. Why NumPy over normal lists?
Faster for math operations:
a * 2 # array([2, 4, 6, 8])
➤ 3. Cool NumPy tricks:
a.mean() # average
np.max(a) # max number
np.min(a) # min number
a[0:2] # slicing → [1, 2]
Key Topics:
⦁ Arrays are like faster, memory-efficient lists
⦁ Element-wise operations: a + b, a * 2
⦁ Slicing and indexing: a[0:2], a[:,1]
⦁ Broadcasting: operations on arrays with different shapes
⦁ Useful functions: np.mean(), np.std(), np.linspace(), np.random.randn()
————————
📊 Step 2: Learn Pandas (for tables like Excel)
What is Pandas?
Python tool to read, clean & analyze data — like Excel but supercharged.
➤ 1. What’s a DataFrame?
Like an Excel sheet, rows & columns.
import pandas as pd
df = pd.read_csv("sales.csv")
df.head() # first 5 rows
➤ 2. Check data info:
df.info() # rows, columns, missing data
df.describe() # stats like mean, min, max
➤ 3. Get a column:
df['product']
➤ 4. Filter rows:
df[df['price'] > 100]
➤ 5. Group data:
Average price by category:
df.groupby('category')['price'].mean()
➤ 6. Merge datasets:
merged = pd.merge(df1, df2, on='customer_id')
➤ 7. Handle missing data:
df.isnull() # where missing
df.dropna() # drop missing rows
df.fillna(0) # fill missing with 0
————————
💡 Beginner Tips:
⦁ Use Google Colab (free, no setup)
⦁ Try small tasks like:
⦁ Show top products
⦁ Filter sales > $500
⦁ Find missing data
⦁ Practice daily, don’t just memorize
————————
🛠️ Mini Project: Analyze Sales Data
1. Load a CSV
2. Check number of rows
3. Find best-selling product
4. Calculate total revenue
5. Get average sales per region
Double Tap ♥️ For More
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
