Data Analytics
Perfect channel to learn Data Analytics Learn SQL, Python, Alteryx, Tableau, Power BI and many more For Promotions: @coderfun @love_data
إظهار المزيد📈 نظرة تحليلية على قناة تيليجرام Data Analytics
تُعد قناة Data Analytics (@sqlspecialist) في القطاع اللغوي الإنكليزية لاعباً نشطاً. يضم المجتمع حالياً 109 708 مشتركاً، محتلاً المرتبة 1 117 في فئة التكنولوجيات والتطبيقات والمرتبة 2 334 في منطقة الهند.
📊 مؤشرات الجمهور والحراك
منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 109 708 مشتركاً.
بحسب آخر البيانات بتاريخ 25 يونيو, 2026، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار 596، وفي آخر 24 ساعة بمقدار 55، مع بقاء الوصول العام مرتفعاً.
- حالة التحقق: غير موثّقة
- معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 2.69%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً 0.78% من ردود الفعل نسبةً إلى إجمالي المشتركين.
- وصول المنشورات: يحصل كل منشور على متوسط 2 948 مشاهدة. وخلال اليوم الأول يجمع عادةً 853 مشاهدة.
- التفاعلات والاستجابة: يتفاعل الجمهور بانتظام؛ متوسط التفاعلات لكل منشور يبلغ 8.
- الاهتمامات الموضوعية: يركز المحتوى على مواضيع رئيسية مثل row, sql, analytic, analyst, visualization.
📝 الوصف وسياسة المحتوى
يصف المؤلف القناة بأنها مساحة للتعبير عن الآراء الذاتية:
“Perfect channel to learn Data Analytics
Learn SQL, Python, Alteryx, Tableau, Power BI and many more
For Promotions: @coderfun @love_data”
بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 26 يونيو, 2026) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التكنولوجيات والتطبيقات.
SELECT e.EID, ed.EDOB
FROM (
SELECT EID
FROM Employee
WHERE ESalary % 2 <> 0
) e
JOIN empdetails ed ON e.EID = ed.EID;
Explanation of the query :-
Filter Employees with Odd Salaries:
The subquery SELECT EID FROM Employee WHERE ESalary % 2 <> 0 filters out Employee IDs (EID) where the salary (ESalary) is an odd number. The modulo operator % checks if ESalary divided by 2 leaves a remainder (<>0).
Merge with empdetails:
The main query then takes the filtered Employee IDs from the subquery and performs a join with the empdetails table using the EID column. This retrieves the date of birth (EDOB) for these employees.
Hope this helps you 😊from sklearn.preprocessing import StandardScaler scaler = StandardScaler() df[['column']] = scaler.fit_transform(df[['column']])
What is the use of GROUP BY in SQL?
GROUP BY is used to group rows that have the same values into summary rows, often with aggregate functions like COUNT, SUM, AVG, etc.
Example:
SELECT department, AVG(salary) FROM employees GROUP BY department;
This will calculate the average salary for each department.
What is the significance of normalization in SQL?
Normalization is the process of organizing data in a way that reduces redundancy and dependency by dividing large tables into smaller ones and using relationships (foreign keys).
1st Normal Form (1NF): Ensures atomicity (no multi-valued fields).
2nd Normal Form (2NF): Ensures that all non-key attributes are fully dependent on the primary key.
3rd Normal Form (3NF): Ensures that no transitive dependencies exist (non-key attributes do not depend on other non-key attributes).
How do you handle time series data in Python?
Handling time series data in Python involves several steps:
Converting to DateTime format: df['date'] = pd.to_datetime(df['date'])
Resampling: To aggregate data at different frequencies:
df.set_index('date').resample('M').sum()
Decomposition: Split the time series into trend, seasonality, and residuals:
from statsmodels.tsa.seasonal
import seasonal_decompose decomposition = seasonal_decompose(df['value'], model='additive', period=12) decomposition.plot()
Plotting: Use libraries like Matplotlib and Seaborn to visualize trends over time.
What are the advantages of using Power BI over Excel?
Data Handling: Power BI can handle much larger datasets (millions of rows) compared to Excel.
Data Modeling: Power BI allows creating complex data models and relationships between tables, which is harder to manage in Excel.
Interactive Visualizations: Power BI offers interactive dashboards with drill-down capabilities.
Advanced Features: Power BI supports advanced analytics, DAX for custom calculations, and integration with other tools like Azure and SharePoint.
Scheduled Refresh: Power BI allows automatic data refresh from connected sources, while in Excel, this needs to be done manually.
Like this post for if you want me to continue the interview series 👍♥️
Share with credits: https://t.me/sqlspecialist
Hope it helps :)Follow the Data Analysts - SQL, Tableau, Excel, Power BI & Python channel on WhatsApp: https://whatsapp.com/channel/0029VaGgzAk72WTmQFERKh02Like this post for more content like this 👍♥️ Share with credits: https://t.me/sqlspecialist Hope it helps :)
SELECT employees.name, departments.department_name FROM employees INNER JOIN departments ON employees.department_id = departments.id;
What are Measures and Calculated Columns in Power BI?
Measures: Used for dynamic calculations based on user interactions. They are created using DAX and are not stored in tables.
Calculated Columns: Are static columns created using DAX, stored in a table, and calculated when the data is loaded.
Example of a Measure (Total Sales):
Total Sales = SUM(Sales[Amount])
Example of a Calculated Column (Profit Margin):
Profit Margin = Sales[Profit] / Sales[Revenue]
How do you remove duplicate values in Excel?
To remove duplicates, use the Remove Duplicates feature:
Select the data range.
Click Data > Remove Duplicates.
Choose the columns to check for duplicates.
Click OK.
Alternatively, use a formula to highlight duplicates:
=COUNTIF(A:A, A2) > 1
For Power Query:
Load data into Power Query.
Select columns.
Click Remove Duplicates.
What is a Heatmap in Data Visualization?
A heatmap is a graphical representation where values are represented by colors. It is used to visualize density, intensity, or correlation between variables.
Common use cases:
Website click heatmaps to analyze user behavior.
Correlation heatmaps in data science to show relationships between variables.
In Python, create a heatmap using Seaborn:
import seaborn as sns import matplotlib.pyplot as plt sns.heatmap(df.corr(), annot=True, cmap="coolwarm") plt.show()
What is the difference between APPLY and MAP functions in Pandas?
map(): Used for element-wise transformations on a single Pandas Series.
apply(): Used for applying functions to a Series or an entire DataFrame.
Example using map():
df['Salary'] = df['Salary'].map(lambda x: x * 1.1) # Increases salary by 10%
Example using apply():
df['New Salary'] = df['Salary'].apply(lambda x: x * 1.1)
For DataFrames, apply() can work on rows or columns:
df.apply(lambda x: x.max() - x.min(), axis=1) # Row-wise difference
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
