1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-21 15:34:21 +00:00

bigdata: Improve content

This commit is contained in:
Steffo 2022-09-29 03:13:48 +02:00
parent 6f4c4c2d42
commit 13e8365997
Signed by: steffo
GPG key ID: 6965406171929D01
4 changed files with 35 additions and 17 deletions

0
.idea/discord.xml Normal file
View file

View file

View file

@ -17,22 +17,25 @@ const Page: NextPage = () => {
Big data analytics
</Heading>
<Chapter>
<Box todo>
<Box>
<Heading level={3}>
Premessa
</Heading>
<p>
TODO
Per ora il corso sembra interessante, ma ho seguito ancora troppe poche lezioni per dirlo con certezza.
</p>
<Parenthesis>
La prof. Mandreoli consiglia il film <Link href={"https://en.wikipedia.org/wiki/Moneyball_(film)"}>Moneyball</Link>, perchè fa vedere quanto è efficace la data science.
</Parenthesis>
</Box>
</Chapter>
<Chapter>
<Box todo>
<Box>
<Heading level={3}>
Materiale raccolto
</Heading>
<p>
TODO
Sto seguendo le lezioni di questo corso, pertanto sto raccogliendo attivamente materiale.
</p>
<Chapter>
<Panel>
@ -49,16 +52,6 @@ const Page: NextPage = () => {
</Chapter>
</Box>
</Chapter>
<Chapter>
<Box>
<Heading level={3}>
Cose bizzarre
</Heading>
<Parenthesis>
La prof. Mandreoli consiglia il film <Link href={"https://en.wikipedia.org/wiki/Moneyball_(film)"}>Moneyball</Link>, (perchè fa vedere quanto sia utile la data science).
</Parenthesis>
</Box>
</Chapter>
</>
}

View file

@ -1,4 +1,4 @@
import {Heading, Chapter, Box, ListUnordered, ListOrdered, Parenthesis, Idiomatic as I, BringAttention as B} from "@steffo/bluelib-react"
import {Heading, Chapter, Box, ListUnordered, Parenthesis, Idiomatic as I, BringAttention as B} from "@steffo/bluelib-react"
import type { NextPage, NextPageContext } from 'next'
import { Link } from '../../../components/link'
@ -18,7 +18,7 @@ const Page: NextPage = () => {
</Link>
</Heading>
<Chapter>
<Heading level={3}>
<Heading level={2}>
Fasi di elaborazione dei dati
</Heading>
<Box>
@ -47,7 +47,7 @@ const Page: NextPage = () => {
I dati raccolti vengono <I>elaborati</I> e puliti, trasformandoli in formati su cui sia possibile effettuare analisi.
</p>
<Parenthesis>
Ad esempio, se i dati provengono da basi di dati diverse, vengono resi uniformi e normalizzati.
Ad esempio, se i dati provengono da basi di dati diverse, vanno messi in una unica tabella con valori comparabili tra loro.
</Parenthesis>
</Box>
<Box>
@ -81,6 +81,31 @@ const Page: NextPage = () => {
</p>
</Box>
</Chapter>
<Chapter>
<Heading level={2}>
Raccolta dati
</Heading>
</Chapter>
<Chapter>
<Heading level={2}>
Elaborazione dati
</Heading>
</Chapter>
<Chapter>
<Heading level={2}>
Analisi esploratoria
</Heading>
</Chapter>
<Chapter>
<Heading level={2}>
Sviluppo modelli
</Heading>
</Chapter>
<Chapter>
<Heading level={2}>
Verifica ipotesi
</Heading>
</Chapter>
</>
}