diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/appuntiweb-omega.iml b/.idea/appuntiweb-omega.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/appuntiweb-omega.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..146ab09 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..639900d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..7ae2dad --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pages/index.tsx b/pages/index.tsx index ed16546..03f7829 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -170,9 +170,11 @@ const Home: NextPage = () => { Anno 4 - + - TBD + + Big data analytics + diff --git a/pages/year4/bigdata/index.tsx b/pages/year4/bigdata/index.tsx new file mode 100644 index 0000000..b8ea62c --- /dev/null +++ b/pages/year4/bigdata/index.tsx @@ -0,0 +1,65 @@ +import {Heading, Chapter, Box, Idiomatic as I, Panel, ListUnordered, Parenthesis} from "@steffo/bluelib-react" +import type { NextPage, NextPageContext } from 'next' +import { Link } from '../../../components/link' +import { Warn1024 } from '../../../components/warn' + + +export async function getStaticProps(_context: NextPageContext) { + return { + props: {} + } +} + + +const Page: NextPage = () => { + return <> + + Big data analytics + + + + + Premessa + +

+ TODO +

+
+
+ + + + Materiale raccolto + +

+ TODO +

+ + + + Appuntiweb + + + + + Appunti di teoria + + + + +
+
+ + + + Cose bizzarre + + + La prof. Mandreoli consiglia il film Moneyball, (perchè fa vedere quanto sia utile la data science). + + + + +} + +export default Page diff --git a/pages/year4/bigdata/teoria.tsx b/pages/year4/bigdata/teoria.tsx new file mode 100644 index 0000000..45f9919 --- /dev/null +++ b/pages/year4/bigdata/teoria.tsx @@ -0,0 +1,87 @@ +import {Heading, Chapter, Box, ListUnordered, ListOrdered, Parenthesis, Idiomatic as I, BringAttention as B} from "@steffo/bluelib-react" +import type { NextPage, NextPageContext } from 'next' +import { Link } from '../../../components/link' + + +export async function getStaticProps(_context: NextPageContext) { + return { + props: {} + } +} + + +const Page: NextPage = () => { + return <> + + + Big data analytics + + + + + Fasi di elaborazione dei dati + + + + Raccolta dati + +

+ I dati vengono massivamente raccolti da tutte le fonti disponibili. +

+ + Ad esempio, possono essere raccolti da: + + Download diretto + Generazione via simulazione + Database pubblici + Richieste ad un'API + Scraping di pagine web dinamiche + + +
+ + + Elaborazione dati + +

+ I dati raccolti vengono elaborati e puliti, trasformandoli in formati su cui sia possibile effettuare analisi. +

+ + Ad esempio, se i dati provengono da basi di dati diverse, vengono resi uniformi e normalizzati. + +
+ + + Analisi esploratoria + +

+ Vengono analizzati i dati in generale per farsi un'idea di come costruire i modelli successivamente. +

+

+ Per aiutarsi nell'analisi, possono essere realizzate visualizzazioni, come grafici o mappe, che possono rappresentare alcune proprietà dei dati. +

+ + Questa è la fase in cui Matplotlib diventa utile! + +
+ + + Sviluppo modelli + +

+ la prof ha lasciato a metà il discorso +

+
+ + + Verifica ipotesi + +

+ le slide non continuano oltre +

+
+
+ +} + +export default Page