Studio Dati

Analizza, trasforma e visualizza dati CSV in un ambiente di lavoro integrato.

I tuoi file non lasciano mai il tuo dispositivo. Elaborati localmente. 100% privato.

Unlocking Tool Engine...

Come si usa Studio Dati

Completa il tuo compito in soli tre semplici passaggi.

1

Caricare CSV

Carica il file CSV nello studio.

2

Analizzare e trasformare

Filtra, ordina, trasforma e unisci colonne in un'unica vista.

3

Esportare

Scarica il risultato come CSV, JSON o Excel.

Domande Frequenti

Tutto ciò che devi sapere sul Studio Dati.

Cos'è lo studio dati?

Un ambiente integrato per l'analisi CSV — filtri, trasformazioni e anteprima in un unico tab.

I dati vengono caricati?

No. Tutto funziona localmente.

Posso salvare le trasformazioni?

Sì — esporta le pipeline di trasformazione come JSON per riutilizzarle.

Limite di dimensione?

Elabora i file fino al limite di memoria del browser.

Formati di esportazione?

CSV, JSON ed Excel.

Can I load multiple CSV files and JOIN them?

Yes. Upload multiple files using the multi-file drop zone. Each file becomes its own table. Write a standard SQL JOIN across the table names, and DuckDB executes the join in-memory. For example: SELECT a.name, b.revenue FROM customers a JOIN sales b ON a.id = b.customer_id. This is a common workflow for analysts combining a CRM export with a billing export.

What SQL dialect does Data Studio support?

Data Studio uses DuckDB's SQL dialect, which is largely compatible with PostgreSQL syntax. It supports CTEs (WITH clauses), window functions (ROW_NUMBER, RANK, LAG, LEAD), ARRAY functions, JSON functions, PIVOT, and UNNEST. DuckDB also supports reading Parquet and JSON natively, in addition to CSV.

What Python libraries are available in the Python mode?

Pyodide ships with a large set of pre-compiled scientific Python packages: Pandas, NumPy, Matplotlib, SciPy, scikit-learn, and many others. Pure-Python packages from PyPI can also be installed at runtime using micropip.install('package-name'). C-extension packages that are not pre-compiled for WASM are not supported.