-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy path4_top_paying_skills.sql
133 lines (130 loc) · 3.21 KB
/
4_top_paying_skills.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
Answer: What are the top skills based on salary?
- Look at the average salary associated with each skill for Data Analyst positions
- Focuses on roles with specified salaries, regardless of location
- Why? It reveals how different skills impact salary levels for Data Analysts and
helps identify the most financially rewarding skills to acquire or improve
*/
SELECT
skills,
ROUND(AVG(salary_year_avg), 0) AS avg_salary
FROM job_postings_fact
INNER JOIN skills_job_dim ON job_postings_fact.job_id = skills_job_dim.job_id
INNER JOIN skills_dim ON skills_job_dim.skill_id = skills_dim.skill_id
WHERE
job_title_short = 'Data Analyst'
AND salary_year_avg IS NOT NULL
AND job_work_from_home = True
GROUP BY
skills
ORDER BY
avg_salary DESC
LIMIT 25;
/*
Here's a breakdown of the results for top paying skills for Data Analysts:
- High Demand for Big Data & ML Skills: Top salaries are commanded by analysts skilled in big data technologies (PySpark, Couchbase), machine learning tools (DataRobot, Jupyter), and Python libraries (Pandas, NumPy), reflecting the industry's high valuation of data processing and predictive modeling capabilities.
- Software Development & Deployment Proficiency: Knowledge in development and deployment tools (GitLab, Kubernetes, Airflow) indicates a lucrative crossover between data analysis and engineering, with a premium on skills that facilitate automation and efficient data pipeline management.
- Cloud Computing Expertise: Familiarity with cloud and data engineering tools (Elasticsearch, Databricks, GCP) underscores the growing importance of cloud-based analytics environments, suggesting that cloud proficiency significantly boosts earning potential in data analytics.
[
{
"skills": "pyspark",
"avg_salary": "208172"
},
{
"skills": "bitbucket",
"avg_salary": "189155"
},
{
"skills": "couchbase",
"avg_salary": "160515"
},
{
"skills": "watson",
"avg_salary": "160515"
},
{
"skills": "datarobot",
"avg_salary": "155486"
},
{
"skills": "gitlab",
"avg_salary": "154500"
},
{
"skills": "swift",
"avg_salary": "153750"
},
{
"skills": "jupyter",
"avg_salary": "152777"
},
{
"skills": "pandas",
"avg_salary": "151821"
},
{
"skills": "elasticsearch",
"avg_salary": "145000"
},
{
"skills": "golang",
"avg_salary": "145000"
},
{
"skills": "numpy",
"avg_salary": "143513"
},
{
"skills": "databricks",
"avg_salary": "141907"
},
{
"skills": "linux",
"avg_salary": "136508"
},
{
"skills": "kubernetes",
"avg_salary": "132500"
},
{
"skills": "atlassian",
"avg_salary": "131162"
},
{
"skills": "twilio",
"avg_salary": "127000"
},
{
"skills": "airflow",
"avg_salary": "126103"
},
{
"skills": "scikit-learn",
"avg_salary": "125781"
},
{
"skills": "jenkins",
"avg_salary": "125436"
},
{
"skills": "notion",
"avg_salary": "125000"
},
{
"skills": "scala",
"avg_salary": "124903"
},
{
"skills": "postgresql",
"avg_salary": "123879"
},
{
"skills": "gcp",
"avg_salary": "122500"
},
{
"skills": "microstrategy",
"avg_salary": "121619"
}
]
*/