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 660 مشتركاً، محتلاً المرتبة 9 391 في فئة التكنولوجيات والتطبيقات والمرتبة 31 743 في منطقة الهند.
📊 مؤشرات الجمهور والحراك
منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 13 660 مشتركاً.
بحسب آخر البيانات بتاريخ 07 يونيو, 2026، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار 151، وفي آخر 24 ساعة بمقدار -5، مع بقاء الوصول العام مرتفعاً.
- حالة التحقق: غير موثّقة
- معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 7.92%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً 2.33% من ردود الفعل نسبةً إلى إجمالي المشتركين.
- وصول المنشورات: يحصل كل منشور على متوسط 1 082 مشاهدة. وخلال اليوم الأول يجمع عادةً 318 مشاهدة.
- التفاعلات والاستجابة: يتفاعل الجمهور بانتظام؛ متوسط التفاعلات لكل منشور يبلغ 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...”
بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 08 يونيو, 2026) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التكنولوجيات والتطبيقات.
Would this value truly exist at the moment of prediction?If the answer is no, the model isn’t learning. It’s cheating.
# Inner join (default)
merged = pd.merge(df_sales, df_customers, on='customer_id')
# Left join
pd.merge(df_sales, df_customers, on='customer_id', how='left')
# Concatenate vertically
all_data = pd.concat([df_2023, df_2024], ignore_index=True)
# Join on index
df1.join(df2, on='date')
This wraps up our Data Manipulation Using Pandas Series.
Hit ❤️ if you liked this series. It will help us tailor more content based on what you like.
👉Join @datascience_bds for more
Part of the @bigdataspecialist family# Sort by one column
df.sort_values('sales', ascending=False)
# Sort by multiple columns
df.sort_values(['region', 'sales'], ascending=[True, False])
# Reset index after sorting
df = df.sort_values('sales', ascending=False).reset_index(drop=True)
# Add rank
df['sales_rank'] = df['sales'].rank(ascending=False)
Next up 👉 Merging and Joining Data# Total sales by region
df.groupby('region')['sales'].sum()
# Multiple aggregations
df.groupby('region').agg({
'sales': 'sum',
'customer_id': 'nunique',
'order_date': 'max'
})
# Group by multiple columns
df.groupby(['region', 'product'])['sales'].mean()
Next up 👉 Sorting and Ranking# Check for nulls
df.isnull().sum()
# Drop rows with any missing values
df_clean = df.dropna()
# Fill missing values
df['age'].fillna(df['age'].median(), inplace=True)
df['category'].fillna('Unknown', inplace=True)
# Forward or backward fill (great for time series)
df['value'].ffill()
Next up 👉 Using GroupBy# Add new column
df['revenue'] = df['sales'] * df['price']
# From existing columns
df['full_name'] = df['first_name'] + ' ' + df['last_name']
# Drop columns
df.drop(columns=['temp_col'], inplace=True)
# Or create a new DF without modifying original
clean_df = df.drop(columns=['old_col1', 'old_col2'])
Next up 👉 Dealing with Missing Values# Multiple conditions
high_sales = df[(df['sales'] > 1000) & (df['region'] == 'West')]
# Using .query() – cleaner syntax!
high_performers = df.query("sales > 1000 and region == 'West'")
# Find missing values
df[df['email'].isna()]
# Contains substring
df[df['product'].str.contains('Pro', case=False)]
Next up 👉 Adding and Removing Columns# Single column (Series)
df['name']
# Multiple columns (DataFrame)
df[['name', 'age', 'sales']]
# Row selection with .loc (label-based)
df.loc[0:5] # Rows 0 to 5
df.loc[df['sales'] > 1000] # Conditional
# .iloc (position-based)
df.iloc[0:5, 1:4] # Rows 0-4, columns 1-3
Next up 👉 Filtering and Queryingimport pandas as pd
# Load CSV
df = pd.read_csv('sales_data.csv')
# Quick look
df.head() # First 5 rows
df.info() # Structure & data types
df.describe() # Basic stats
Next up 👉 Selecting Columns & Rows
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
