1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-07-31 22:40:19 +02:00

Add link to data analyst roadmap

This commit is contained in:
Kamran Ahmed
2024-04-03 00:18:47 +01:00
parent 03173f6017
commit 852622f5ac
4 changed files with 15 additions and 2 deletions

View File

@@ -39,6 +39,7 @@ Here is the list of available roadmaps with more being actively worked upon.
- [Computer Science Roadmap](https://roadmap.sh/computer-science)
- [Data Structures and Algorithms Roadmap](https://roadmap.sh/datastructures-and-algorithms)
- [AI and Data Scientist Roadmap](https://roadmap.sh/ai-data-scientist)
- [Data Analyst Roadmap](https://roadmap.sh/data-analyst)
- [MLOps Roadmap](https://roadmap.sh/mlops)
- [QA Roadmap](https://roadmap.sh/qa)
- [Python Roadmap](https://roadmap.sh/python)

View File

@@ -18,7 +18,7 @@ export function RoleRoadmaps(props: RoleRoadmapsProps) {
<SectionBadge title={badge} />
</div>
<div className="my-4 sm:my-7 text-left">
<h2 className="mb-1 text-xl sm:text-3xl font-semibold">{title}</h2>
<h2 className="mb-1 text-balance text-xl sm:text-3xl font-semibold">{title}</h2>
<p className="text-sm sm:text-base text-gray-500">{description}</p>
<div className="mt-4 sm:mt-7 grid sm:grid-cols-2 md:grid-cols-3 gap-3">{children}</div>

View File

@@ -303,6 +303,11 @@ const groups: GroupType[] = [
link: '/ai-data-scientist',
type: 'role',
},
{
title: 'Data Analyst',
link: '/data-analyst',
type: 'role',
},
{
title: 'MLOps',
link: '/mlops',

View File

@@ -328,11 +328,18 @@ import { TipItem } from '../components/GetStarted/TipItem';
description='Learn all you need to know to become an AI or Data Scientist.'
/>
<RoadmapCard
icon={Bot}
title='Data Analyst'
link='/data-analyst'
description='Learn all you need to know to become a Data Analyst.'
/>
<RoadmapCard
icon={MessageCircleCode}
title='Prompt Engineering'
link='/prompt-engineering'
description='Learn how to write better prompts for GPT-3 and other language models.'
description='Learn how to write better prompts for GPT-* and other language models.'
/>
<RoadmapCard