Datastudio

Analyseer, transformeer en visualiseer CSV-gegevens in een geïntegreerde werkomgeving.

Your files never leave your device. Processed locally. 100% private.

Unlocking Tool Engine...

Hoe Te Gebruiken Datastudio

Voltooi uw taak perfect in slechts drie eenvoudige stappen.

1

CSV uploaden

Laad uw CSV-bestand in het studio.

2

Analyseren en transformeren

Filter, sorteer, transformeer en combineer kolommen in één weergave.

3

Exporteren

Download het resultaat als CSV, JSON of Excel.

Veelgestelde Vragen

Alles wat u moet weten over de Datastudio.

Wat is het datastudio?

Een geïntegreerde omgeving voor CSV-analyse — filters, transformaties en voorvertoning in één tab.

Worden gegevens geüpload?

Nee. Alles werkt lokaal.

Kan ik transformaties opslaan?

Ja — exporteer transformatiepipelines als JSON voor hergebruik.

Groottelimiet?

Verwerk bestanden tot de geheugenlimiet van de browser.

Exportformaten?

CSV, JSON en 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.