Data Science | علم داده
📊 دانشمند داده شوید! 👔 جهت درج تبلیغات، به آیدی زیر پیام دهید:👇🏼 🆔 @DataScienceir_Adv
Show more📈 Analytical overview of Telegram channel Data Science | علم داده
Channel Data Science | علم داده (@datascience_ir) in the Farsi language segment is an active participant. Currently, the community unites 50 145 subscribers, ranking 2 680 in the Technologies & Applications category and 6 678 in the Iran region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 50 145 subscribers.
According to the latest data from 19 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -360 over the last 30 days and by -9 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 7.19%. Within the first 24 hours after publication, content typically collects 3.04% reactions from the total number of subscribers.
- Post reach: On average, each post receives 3 605 views. Within the first day, a publication typically gains 1 527 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 6.
- Thematic interests: Content is focused on key topics such as ابزار, داده, واقعی, پایتون, دیتا.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“📊 دانشمند داده شوید!
👔 جهت درج تبلیغات، به آیدی زیر پیام دهید:👇🏼
🆔 @DataScienceir_Adv”
Thanks to the high frequency of updates (latest data received on 20 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 Technologies & Applications category.
df.info()
✅ آمار توصیفی:
df.describe()
✅ نمایش چند ردیف اول یا آخر:
df.head(5)
df.tail(5)
✅ شکل و ابعاد دیتافریم:
df.shape
➖ ➖ ➖
2️⃣ مدیریت دادههای گمشده
✅ شمارش دادههای Null هر ستون:
df.isna().sum()
✅ حذف ردیفهایی که داده گمشده دارن:
df.dropna(subset=['column_name'])
✅ جایگذاری مقدار جدید به جای missing values:
df.fillna({'col1': 0, 'col2': 'unknown'})
✅ پر کردن مقادیر گمشده با روش Interpolation:
df.interpolate(method='linear')
➖ ➖ ➖
3️⃣ انتخاب و فیلتر کردن دیتا
✅ انتخاب چند ستون خاص:
df[['col1', 'col2']]
انتخاب بر اساس ایندکس:
df.iloc[:, 1:5]
✅ انتخاب با لیبل:
df.loc[:, 'col1':'col5']
✅ فیلتر کردن براساس شرط:
df[df['age'] > 30]
✅ اعمال فیلتر پیچیده:
df.query('age > 30 & salary > 50000')
✅ انتخاب n ردیف با بزرگترین مقدار:
df.nlargest(5, 'value')
✅ نمونهگیری تصادفی:
df.sample(frac=0.1, random_state=42)
➖ ➖ ➖
4️⃣ تغییر و تبدیل دیتا
✅ گروهبندی داده و محاسبه میانگین:
df.groupby('category').mean()
✅ ساخت Pivot Table:
df.pivot_table(index='category', values='value', aggfunc='mean')
✅ جدول Cross Tabulation:
pd.crosstab(df.category, df.subcategory)
✅ تبدیل به تاریخ:
pd.to_datetime(df['date_column'])
✅ بازنمونهگیری دادهها:
df.resample('M').mean()
✅ استخراج ماه از ستونهای تاریخ:
df['month'] = df['date'].dt.month
✅ محاسبه میانگین متحرک:
df.set_index('date').rolling(window=7).mean()
➖ ➖ ➖
5️⃣ دستورات مهم NumPy
✅ ساخت آرایه از یک لیست:
np.array([1, 2, 3])
✅ ایجاد آرایه صفر:
np.zeros((3, 4))
✅ ایجاد نقاط با فاصلهی یکسان:
np.linspace(0, 1, 100)
✅ تغییر شکل آرایه:
np.reshape(arr, (3, 4))
✅ محاسبه میانگین و انحراف معیار:
np.mean(arr, axis=0)
np.std(arr)
✅ ضرب ماتریسها:
np.dot(a, b)
✅ محاسبه معکوس ماتریس:
np.linalg.inv(matrix)
➖ ➖ ➖
6️⃣ تمیز کردن و ترکیب دیتا
✅ انجام Join:
pd.merge(df1, df2, on='key')
✅ اتصال دیتافریمها به همدیگه:
pd.concat([df1, df2], axis=0)
✅ حذف رکوردهای تکراری:
df.drop_duplicates()
✅ جایگذاری مقدار جدید داخل دیتا:
df.replace({'old_val': 'new_val'})
✅ استفاده از فانکشن روی ستون:
df['col'].apply(lambda x: x.lower())
✅ تبدیل نوع دادهها:
df.astype({'col1': 'int', 'col2': 'category'})
🌐 #علم_داده #DataScience
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
📊 دانشمند داده شوید :
📊 @DataScience_ir
📱 پیج اینستاگرام:
📊 @DataScience_fafrom fastapi.middleware.gzip import GZipMiddleware
app.add_middleware(GZipMiddleware, minimum_size=1000, compresslevel=5)
◀️پارامتر minimum_size میگه از چه حجمی به بعد فشردهسازی شروع بشه.
◀️با compresslevel هم میزان فشردهسازی رو تنظیم میکنه (عدد بالاتر = فشردهتر ولی کندتر).
🌐 #علم_داده #DataScience
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
📊 دانشمند داده شوید :
📊 @DataScience_ir
📱 پیج اینستاگرام:
📊 @DataScience_fa
Available now! Telegram Research 2025 — the year's key insights 
