Data Analytics
Perfect channel to learn Data Analytics Learn SQL, Python, Alteryx, Tableau, Power BI and many more For Promotions: @coderfun @love_data
Показати більше📈 Аналітичний огляд Telegram-каналу Data Analytics
Канал Data Analytics (@sqlspecialist) у мовному сегменті Англійська є активним учасником. На даний момент спільнота об'єднує 109 775 підписників, посідаючи 1 114 місце в категорії Технології та додатки та 2 321 місце у регіоні Індія.
📊 Показники аудиторії та динаміка
З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 109 775 підписників.
За останніми даними від 29 червня, 2026, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на 523, а за останні 24 години на 6, загальне охоплення залишається високим.
- Статус верифікації: Не верифікований
- Рівень залученості (ER): Середній показник залученості аудиторії становить 2.41%. Протягом перших 24 годин після публікації контент зазвичай збирає 1.49% реакцій від загальної кількості підписників.
- Охоплення публікацій: В середньому кожен допис отримує 2 646 переглядів. Протягом першої доби публікація в середньому набирає 1 630 переглядів.
- Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 7.
- Тематичні інтереси: Контент зосереджений навколо ключових тем, таких як 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”
Завдяки високій частоті оновлень (останні дані отримано 30 червня, 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
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
