mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-09 21:53:44 +02:00
csvstat: add Italian translation.
This commit is contained in:
parent
4867904b01
commit
1d1651f6a4
1 changed files with 24 additions and 0 deletions
24
pages.it/common/csvstat.md
Normal file
24
pages.it/common/csvstat.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# csvstat
|
||||||
|
|
||||||
|
> Stampa statistiche descrittive per tutte le colonne di un file CSV.
|
||||||
|
> Incluso in csvkit.
|
||||||
|
|
||||||
|
- Mostra tutte le statistiche per tutte le colonne:
|
||||||
|
|
||||||
|
`csvstat {{dati.csv}}`
|
||||||
|
|
||||||
|
- Mostra tutte le statistiche per le colonne 2 e 4:
|
||||||
|
|
||||||
|
`csvstat -c {{2,4}} {{dati.csv}}`
|
||||||
|
|
||||||
|
- Mostra la somma per tutte le colonne:
|
||||||
|
|
||||||
|
`csvstat --sum {{dati.csv}}`
|
||||||
|
|
||||||
|
- Mostra la lunghezza massima dei valori della colonna 3:
|
||||||
|
|
||||||
|
`csvstat -c {{3}} --len {{dati.csv}}`
|
||||||
|
|
||||||
|
- Mostra il numedo di valori unici nella colonna "nome":
|
||||||
|
|
||||||
|
`csvstat -c {{nome}} --unique {{dati.csv}}`
|
Loading…
Add table
Reference in a new issue