mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-31 10:29:25 +01:00
Add: 'maths' tag
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ publishedAt: 2024/11/26
|
|||||||
tags:
|
tags:
|
||||||
- article
|
- article
|
||||||
- ml
|
- ml
|
||||||
|
- maths
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|||||||
9
types.ts
9
types.ts
@@ -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',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user