{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "e590cc7e-3a6d-4c53-95e4-1d0cf35df720",
   "metadata": {},
   "outputs": [],
   "source": [
    "from sklearn import svm\n",
    "import matplotlib.pyplot as plt\n",
    "import numpy as np\n",
    "import pandas as pd"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "90507474-314d-4453-85a0-f71a71706f51",
   "metadata": {},
   "source": [
    "## esercizio di classificazione con SVM\n",
    "- caricare i dati in classificazione.csv\n",
    "- farne un grafico delle colonne x,y,lab usando lab per il colore per evidenziare le due classi presenti: True e False\n",
    "- usare il classificatore SVM: http://scikit-learn.org/stable/modules/svm.html per ottenere un modello\n",
    "- calcolare la matrice di confusione"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "74b6818b-42dd-4c02-b851-49fcb8b164ef",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.13.12"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
