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 588 підписників, посідаючи 1 123 місце в категорії Технології та додатки та 2 349 місце у регіоні Індія.
📊 Показники аудиторії та динаміка
З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 109 588 підписників.
За останніми даними від 21 червня, 2026, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на 591, а за останні 24 години на -6, загальне охоплення залишається високим.
- Статус верифікації: Не верифікований
- Рівень залученості (ER): Середній показник залученості аудиторії становить 3.13%. Протягом перших 24 годин після публікації контент зазвичай збирає 1.02% реакцій від загальної кількості підписників.
- Охоплення публікацій: В середньому кожен допис отримує 3 429 переглядів. Протягом першої доби публікація в середньому набирає 1 114 переглядів.
- Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 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”
Завдяки високій частоті оновлень (останні дані отримано 22 червня, 2026), канал підтримує актуальність та високий рівень охоплення публікацій. Аналітика показує, що аудиторія активно взаємодіє з контентом, що робить його важливою точкою впливу в категорії Технології та додатки.
SELECT department_id, AVG(salary) AS avg_salary
FROM employees
GROUP BY department_id;
2. What does Filter context in DAX mean?
Answer - Filter context in DAX refers to the subset of data that is actively being used in the calculation of a measure or in the evaluation of an expression. This context is determined by filters on the dashboard items like slicers, visuals, and filters pane which restrict the data being processed.
3. Explain how to implement Row-Level Security (RLS) in Power BI.
Answer - Row-Level Security (RLS) in Power BI can be implemented by:
- Creating roles within the Power BI service.
- Defining DAX expressions that specify the data each role can access.
- Assigning users to these roles either in Power BI or dynamically through AD group membership.
4. Create a dictionary, add elements to it, modify an element, and then print the dictionary in alphabetical order of keys.
Answer -
d = {'apple': 2, 'banana': 5}
d['orange'] = 3 # Add element
d['apple'] = 4 # Modify element
sorted_d = dict(sorted(d.items())) # Sort dictionary
print(sorted_d)
5. Find and print duplicate values in a list of assorted numbers, along with the number of times each value is repeated.
Answer -
from collections import Counter
numbers = [1, 2, 2, 3, 4, 5, 1, 6, 7, 3, 8, 1]
count = Counter(numbers)
duplicates = {k: v for k, v in count.items() if v > 1}
print(duplicates)SUM, AVG, and COUNT that summarize large sets of data.
7️⃣ Dashboards: Collections of visualizations combined into a single view to tell a more comprehensive story.
8️⃣ Actions: Interactive elements that allow users to filter, highlight, or navigate between sheets in a dashboard.
9️⃣ Parameters: Dynamic values that allow you to adjust the content of your visualizations or calculations.
🔟 Tableau Server / Tableau Online: Platforms for publishing, sharing, and collaborating on Tableau workbooks and dashboards with others.
Best Resources to learn Tableau: https://t.me/DataSimplifier
Hope you'll like it
Like this post if you need more content like this 👍❤️
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
