---
title: "csv"
date: 2025-06-26
published: true
tags:
  - python
template: blog-post
---


``` csv
name,age,city
Alice,30,New York
Bob,25,San Francisco
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
```

```csv
name,age,city
Alice,30,New York
Bob,25,San Francisco
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
Charlie,35,Chicago
```

``` chartjs
{
  "type": "bar",
  "data": {
    "labels": ["Red", "Blue"],
    "datasets": [{ "label": "Votes", "data": [12, 19] }]
  },
  "options": {
    "responsive": true
  }
}
```

``` chartjs
{
  "type": "line",
  "data": {
    "labels": [
      65,
      59,
      80,
      81,
      56,
      55,
      40
    ],
    "datasets": [
      {
        "label": "My First Dataset",
        "data": [
          65,
          59,
          80,
          81,
          56,
          55,
          40
        ],
        "fill": false,
        "borderColor": "rgb(75, 192, 192)",
        "tension": 0.1
      }
    ]
  }
}
```

``` chartjs
{
  "type": "radar",
  "data": {
    "labels": [
      "Minecraft",
      "Hollow Knight",
      "Animal Well",
      "Watching Netflix",
      "Tetris"

    ],
    "datasets": [
      {
        "label": "MyChoices",
        "data": [
        8, 9, 7, 4, 3
        ],
        "fill": false,
        "borderColor": "rgb(75, 192, 192)",
        "tension": 0.1
      }
    ]
  }
}
```

``` mermaid
graph TD
  A-->B
  A-->C
  A-->D
  D-->E
```
