Add: 'maths' tag

This commit is contained in:
2024-11-27 12:06:52 +01:00
parent 06218d0e98
commit 81512e97bf
3 changed files with 9 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ readingTime: 4
tags: tags:
- project - project
- python - python
- maths
--- ---
This is the French version of the report for the Schelling Segregation Model project. The project was done as part of the course `Projet Numérique` at the Paris-Saclay University. The goal was to implement the Schelling Segregation Model in Python and analyze the results using statistics and data visualization. This is the French version of the report for the Schelling Segregation Model project. The project was done as part of the course `Projet Numérique` at the Paris-Saclay University. The goal was to implement the Schelling Segregation Model in Python and analyze the results using statistics and data visualization.

View File

@@ -7,6 +7,7 @@ publishedAt: 2024/11/26
tags: tags:
- article - article
- ml - ml
- maths
--- ---
## Introduction ## Introduction

View File

@@ -54,7 +54,7 @@ export interface Tag {
color: BadgeColor color: BadgeColor
} }
export const TAGS = [ export const TAGS: Array<Tag> = [
{ {
label: 'Article', label: 'Article',
icon: 'i-ph-pencil-line-duotone', icon: 'i-ph-pencil-line-duotone',
@@ -90,4 +90,9 @@ export const TAGS = [
icon: 'i-vscode-icons-file-type-python', icon: 'i-vscode-icons-file-type-python',
color: 'amber', color: 'amber',
}, },
].sort((a, b) => a.label.localeCompare(b.label)) {
label: 'Maths',
icon: 'i-ph-calculator-duotone',
color: 'rose',
},
]