ch
Feedback
Data Analytics

Data Analytics

前往频道在 Telegram

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 744 名订阅者,在 技术与应用 类别中位列第 1 114,并在 印度 地区排名第 2 320

📊 受众指标与增长动态

невідомо 创建以来,项目保持高速增长,吸引了 109 744 名订阅者。

根据 28 六月, 2026 的最新数据,频道保持稳定运转。过去 30 天订阅人数变化为 541,过去 24 小时变化为 -27,整体触达仍然可观。

  • 认证状态: 未认证
  • 互动率 (ER): 平均受众互动率为 2.47%。内容发布后 24 小时内通常能获得 1.35% 的反应,占订阅者总量。
  • 帖子覆盖: 每篇帖子平均可获得 2 706 次浏览,首日通常累积 1 486 次浏览。
  • 互动与反馈: 受众积极参与,单帖平均反应数为 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

凭借高频更新(最新数据采集于 29 六月, 2026),频道始终保持新鲜度与高覆盖。分析显示受众积极互动,使其成为 技术与应用 类别中的关键影响点。

109 744
订阅者
-2724 小时
+1457
+54130
帖子存档
EY is hiring Data Analyst! Qualifications: Bachelors/ Master’s Degree Salary: Upto 9.6 LPA (Expected) Batch: 2018/ 19/ 20/ 21/ 22/ 23 Experience: 0 - 1 (Years) Location: Bangalore/ WFH 📌Apply Link: https://careers.ey.com/ey/job/Bengaluru-EMS-Data-CoE-Advanced-Analyst-KA-560037/875137901/?feedId=353401&utm_source=LinkedInJobPostings&utm_campaign=j2w_linkedin

1. What do Tableau's sets and groups mean? Data is grouped using sets and groups according to predefined criteria. The primary distinction between the two is that although a set can have only two options—either in or out—a group can divide the dataset into several groups. A user should decide which group or sets to apply based on the conditions. 3.What do you mean by a Bag of Words (BOW)? It is used for word frequency or occurrences to train a classifier. It contains a text representation that describes the frequency with which words appear in a document. It has two steps: -A list of terms that are well-known. -A metric for determining the existence of well-known terms. 3. What are Nested Triggers? Triggers may implement DML by using INSERT, UPDATE, and DELETE statements. These triggers that contain DML and find other triggers for data modification are called Nested Triggers. 4. What is a True positive rate and a false positive rate? True positive rate or Recall: It gives us the percentage of the true positives captured by the model out of all the Actual Positive class. TPR = TP/ (TP+FN) False Positive rate: It gives us the percentage of all the false positives by my model prediction from the all Actual Negative class. FPR = FP/(FP+TN)

1. What is the difference between SQL and MySQL? SQL is a standard language for retrieving and manipulating structured databases. On the contrary, MySQL is a relational database management system, like SQL Server, Oracle or IBM DB2, that is used to manage SQL databases. 2. What is a Cross-Join? Cross join can be defined as a cartesian product of the two tables included in the join. The table after join contains the same number of rows as in the cross-product of the number of rows in the two tables. If a WHERE clause is used in cross join then the query will work like an INNER JOIN. 3. What is a Stored Procedure? A stored procedure is a subroutine available to applications that access a relational database management system (RDBMS). Such procedures are stored in the database data dictionary. The sole disadvantage of stored procedure is that it can be executed nowhere except in the database and occupies more memory in the database server. 4. What is Pattern Matching in SQL? SQL pattern matching provides for pattern search in data if you have no clue as to what that word should be. This kind of SQL query uses wildcards to match a string pattern, rather than writing the exact word. The LIKE operator is used in conjunction with SQL Wildcards to fetch the required information.

1. Give an overview of the fact and dimensions of the table? Facts are numeric measures of data. They are stored in fact tables. Fact tables store that type of data that will be analyzed by dimension tables. Fact tables have foreign keys associating with dimension tables. Dimensions are descriptive attributes of data. Those will be stored in the dimensions table. For example, customer’s information like name, number, and email will be stored in the dimension table. 2. Explain the limitation of context filters in Tableau? Whenever we set a context filter, Tableau generates a temp table that needs to refresh each and every time, whenever the view is triggered. So, if the context filter is changed in the database, it needs to recompute the temp table, so the performance will be decreased. 3. What is the difference between published data and embedded data sources? The published data source contains connection information that is independent of workbooks and can be used by multiple workbooks. The embedded data source contains connection information but it is associated with the workbooks. 4. Explain the disaggregation and aggregation of data in Tableau? Aggregation → The process of summarizing the data and viewing a single numeric value is called aggregation. Example – sum/avg of salary for each employee Disaggregation →The process of viewing each transaction for analyzing all the measures both dependently and independently. Example – individual salary transactions for each employee.

Big Data Engineering Q&A 📘.pdf1.50 MB

photo content

LeetCode_SQL_Questions_With_Solutions.pdf3.50 KB

SQL commands Notes 🔥☺️
+8
SQL commands Notes 🔥☺️

1. Define the term 'Data Wrangling. Data Wrangling is the process wherein raw data is cleaned, structured, and enriched into a desired usable format for better decision making. It involves discovering, structuring, cleaning, enriching, validating, and analyzing data. This process can turn and map out large amounts of data extracted from various sources into a more useful format. 2. What are the best methods for data cleaning? Create a data cleaning plan by understanding where the common errors take place and keep all the communications open. Before working with the data, identify and remove the duplicates. This will lead to an easy and effective data analysis process.Focus on the accuracy of the data. Set cross-field validation, maintain the value types of data, and provide mandatory constraints.Normalize the data at the entry point so that it is less chaotic. You will be able to ensure that all information is standardized, leading to fewer errors on entry. 3. Explain the Type I and Type II errors in Statistics? In Hypothesis testing, a Type I error occurs when the null hypothesis is rejected even if it is true. It is also known as a false positive. A Type II error occurs when the null hypothesis is not rejected, even if it is false. It is also known as a false negative. 4. How do you make a dropdown list in MS Excel? First, click on the Data tab that is present in the ribbon.Under the Data Tools group, select Data Validation.Then navigate to Settings > Allow > List.Select the source you want to provide as a list array. 5. State some ways to improve the performance of Tableau? Use an Extract to make workbooks run faster. Reduce the scope of data to decrease the volume of data. Reduce the number of marks on the view to avoid information overload. Hide unused fields. Use Context filters. Use indexing in tables and use the same fields for filtering. Remove unnecessary calculations and sheets.

sql_cheatsheet.pdf6.98 KB

Which of the following clause is not available in SQL?
Anonymous voting

Which of the following clause is used to sort data in SQL?
Anonymous voting

1. What do you understand about the E-R model? Answer: E-R model is an Entity-Relationship model which defines the conceptual view of the database. The E-R model basically shows the real-world entities and their association/relations. Entities here represent the set of attributes in the database. 2. Explain the terms ‘Attribute’ and ‘Relations’ Answer: Attribute is described as the properties or characteristics of an entity. For Example, Employee ID, Employee Name, Age, etc., can be attributes of the entity Employee. Relation is a two-dimensional table containing a number of rows and columns where every row represents a record of the relation. Here, rows are also known as ‘Tuples’ and columns are known as ‘Attributes’. 3. What is the Database transaction? Answer: Sequence of operation performed which changes the consistent state of the database to another is known as the database transaction. After the completion of the transaction, either the successful completion is reflected in the system or the transaction fails and no change is reflected. 4. What do you understand about ‘Atomicity’ and ‘Aggregation’? Answer: Atomicity is the condition where either all the actions of the transaction are performed or none. This means, when there is an incomplete transaction, the database management system itself will undo the effects done by the incomplete transaction. Aggregation is the concept of expressing the relationship with the collection of entities and their relationships.

PhonePe is hiring Data Analyst! Qualifications: Graduate/ Post Graduate Salary: 7 - 10 LPA (Expected) Experience: 0 - 3 (Years) Location: Bengaluru/ Delhi/ Indore 📌Apply Link: https://boards.greenhouse.io/embed/job_app?token=4787053003&source=LinkedIn

Google is hiring Data Analyst! 👇👇 https://t.me/getjobss/1099 Minimum qualifications: Bachelor's degree or equivalent practical experience. 2 years of experience in data analysis. Experience in querying data sets. Preferred qualifications: Experience with project management and process optimization with a data analytics component. Experience with fraud, security, and threat analysis in the context of Cloud service providers. Knowledge of fraud dynamics in the online media. Ability to identify workflow pain points, optimize and scale processes. Excellent communication skills with the ability to interact with internal and external users.

1. What is the Difference Between a Shallow Copy and Deep Copy in python? Deep copy creates a different object and populates it with the child objects of the original object. Therefore, changes in the original object are not reflected in the copy. copy.deepcopy() creates a Deep Copy. Shallow copy creates a different object and populates it with the references of the child objects within the original object. Therefore, changes in the original object are reflected in the copy. copy.copy creates a Shallow Copy. 2. How can you remove duplicate values in a range of cells? 1. To delete duplicate values in a column, select the highlighted cells, and press the delete button. After deleting the values, go to the ‘Conditional Formatting’ option present in the Home tab. Choose ‘Clear Rules’ to remove the rules from the sheet. 2. You can also delete duplicate values by selecting the ‘Remove Duplicates’ option under Data Tools present in the Data tab. 3. Define shelves and sets in Tableau? Shelves: Every worksheet in Tableau will have shelves such as columns, rows, marks, filters, pages, and more. By placing filters on shelves we can build our own visualization structure. We can control the marks by including or excluding data. Sets: The sets are used to compute a condition on which the dataset will be prepared. Data will be grouped together based on a condition. Fields which is responsible for grouping are known assets. For example – students having grades of more than 70%. 4. Define Entity, Entity type, and Entity set. Entity can be anything, be it a place, class or object which has an independent existence in the real world. Entity Type represents a set of entities that have similar attributes. Entity Set in the database represents a collection of entities having a particular entity type.

1. List the different types of relationships in SQL. One-to-One - This can be defined as the relationship between two tables where each record in one table is associated with the maximum of one record in the other table. One-to-Many & Many-to-One - This is the most commonly used relationship where a record in a table is associated with multiple records in the other table. Many-to-Many - This is used in cases when multiple instances on both sides are needed for defining a relationship. Self-Referencing Relationships - This is used when a table needs to define a relationship with itself. 2. What are the different views available in Power BI Desktop? There are three different views in Power BI, each of which serves another purpose: Report View - In this view, users can add visualizations and additional report pages and publish the same on the portal. Data View - In this view, data shaping can be performed using Query Editor tools. Model View - In this view, users can manage relationships between complex datasets. 3. What are macros in Excel? Excel allows you to automate the tasks you do regularly by recording them into macros. So, a macro is an action or a set of them that you can perform n number of times. For example, if you have to record the sales of each item at the end of the day, you can create a macro that will automatically calculate the sales, profits, loss, etc and use the same for the future instead of manually calculating it every day.

Which of the following is not available in marks card of tableau?
Anonymous voting

Which of the following is not available India marks card of Tableau?
Anonymous voting

Storytelling: You Can learn to Tell Stories Effectively 👇👇 https://t.me/udemy_free_courses_with_certi/1515 [Free for limited time only] Good to build your story telling skills which will be useful when added with visualization 😄👍

Data Analytics - Telegram 频道 @sqlspecialist 的统计与分析