Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

1,263 Commits

Repository files navigation

dataframe logo

hackage Latest ReleaseC/I

User guide | Discord

DataFrame

Tabular data analysis in Haskell. Read CSV, Parquet, and JSON files, transform columns with a typed expression DSL, and optionally lock down your entire schema at the type level for compile-time safety.

The library ships three API layers — all operating on the same underlying DataFrame type at runtime:

  • Untyped (import qualified DataFrame as D) — string-based column names, great for exploration and scripting.
  • Typed (import qualified DataFrame.Typed as T) — phantom-type schema tracking with compile-time column validation.
  • Monadic API — write your transformation as a self contained pipeline.

This README is a runnable scripths notebook. Every Haskell block runs top-to-bottom in one shared session against the datasets in ./data. Reproduce every output below with scripths docs/base_scripts/base_readme.md -o README.md from the repo root.

Why this library?

  • Concise, declarative, composable data pipelines using the |> pipe operator.
  • Choose your level of type safety: keep it lightweight for quick analysis, or lock it down for production pipelines.
  • High performance from Haskell's optimizing compiler and an efficient columnar memory model with bitmap-backed nullability.
  • Designed for interactivity: a custom REPL, IHaskell notebook support, terminal and web plotting, and helpful error messages.

Install

cabal update
cabal install dataframe

To use as a dependency in a project:

build-depends: base >= 4, dataframe

Works with GHC 9.4 through 9.12. A custom REPL with all imports pre-loaded is available after installing:

dataframe

Quick Start

Group sales by product and compute totals. The first block carries the scripths cabal directives and the imports shared by the rest of the document; you can also drop the same code into an Example.hs and run it with cabal run Example.hs after adding a #!/usr/bin/env cabal header.

-- cabal: build-depends: dataframe, text-- cabal: default-extensions: OverloadedStrings, TypeApplications, TemplateHaskell, DataKinds, TypeFamilies, FlexibleInstances, FlexibleContexts, ScopedTypeVariables, DeriveGeneric, UndecidableInstancesimportqualifiedDataFrameasDimportqualifiedDataFrame.FunctionsasFimportqualifiedDataFrame.TypedasDTimportDataFrame.OperatorsimportData.Text (Text)
importData.Int (Int64)
sales =D.fromNamedColumns
[ ("product", D.fromList [1, 1, 2, 2, 3, 3::Int])
, ("amount", D.fromList [100, 120, 50, 20, 40, 30::Int])
]
-- Group by product and compute totals
sales
|>D.groupBy ["product"]
|>D.aggregate [ F.sum (F.col @Int"amount") `as`"total"
, F.count (F.col @Int"amount") `as`"orders"
]
|>D.toMarkdown'
product
Int
total
Int
orders
Int
12202
3702
2702

Reading from files works the same way:

fileDf <-D.readCsv "./data/housing.csv"
fileDf <-D.readParquet "./data/mtcars.parquet"-- Hugging Face datasets (needs network access, via the dataframe-huggingface package):-- import qualified DataFrame.IO.HuggingFace as HF-- fileDf <- HF.readParquet "hf://datasets/scikit-learn/iris/default/train/0000.parquet"D.dimensions fileDf

(32,12)

Interactive REPL

The dataframe REPL comes with all imports pre-loaded. Here's a typical exploration session (each block runs as a cell):

df <-D.readCsv "./data/housing.csv"D.dimensions df

(20640,10)

D.describeColumns df |>D.toMarkdown'
Column Name
Text
# Non-null Values
Int
# Null Values
Int
Type
Text
total_bedrooms20433207Maybe Double
ocean_proximity206400Text
median_house_value206400Double
median_income206400Double
households206400Double
population206400Double
total_rooms206400Double
housing_median_age206400Double
latitude206400Double
longitude206400Double

The :declareColumns macro ($(D.declareColumns df) outside the REPL) generates typed column references from a dataframe, so you can use column names directly in expressions instead of writing F.col @Double "median_income" every time:

$(D.declareColumns df)
df |>D.groupBy ["ocean_proximity"]
|>D.aggregate [F.mean median_house_value `as`"avg_value"]
|>D.toMarkdown'
ocean_proximity
Text
avg_value
Double
NEAR BAY259212.31179039303
NEAR OCEAN249433.97742663656
INLAND124805.39200122119
<1H OCEAN240084.28546409807
ISLAND380440.0

Create new columns from existing ones:

df |>D.derive "rooms_per_household" (total_rooms / households) |>D.take3|>D.toMarkdown'
longitude
Double
latitude
Double
housing_median_age
Double
total_rooms
Double
total_bedrooms
Maybe Double
population
Double
households
Double
median_income
Double
median_house_value
Double
ocean_proximity
Text
rooms_per_household
Double
-122.2337.8841.0880.0Just 129.0322.0126.08.3252452600.0NEAR BAY6.984126984126984
-122.2237.8621.07099.0Just 1106.02401.01138.08.3014358500.0NEAR BAY6.238137082601054
-122.2437.8552.01467.0Just 190.0496.0177.07.2574352100.0NEAR BAY8.288135593220339

Type mismatches are caught as compile errors — adding a Double column to a Text column won't silently produce garbage:

dataframe> df |> D.derive "nonsense" (latitude + ocean_proximity)
<interactive>:14:47: error: [GHC-83865]
• Couldn't match type 'Text' with 'Double'
Expected: Expr Double
Actual: Expr Text
• In the second argument of '(+)', namely 'ocean_proximity'
In the second argument of 'derive', namely
'(latitude + ocean_proximity)'

Template Haskell

For scripts and projects, Template Haskell can generate column bindings at compile time.

Generate column references from a CSV

declareColumnsFromCsvFile (in DataFrame.TH, also re-exported from DataFrame) reads your CSV at compile time and generates typed Expr bindings for every column:

-- Reads housing.csv at compile time and generates:-- latitude :: Expr Double-- total_rooms :: Expr Double-- ocean_proximity :: Expr Text-- ... one binding per column$(D.declareColumnsFromCsvFile "./data/housing.csv")
df <-D.readCsv "./data/housing.csv"
df |>D.derive "rooms_per_household" (total_rooms / households)
|>D.filterWhere (median_income .>.5)
|>D.groupBy ["ocean_proximity"]
|>D.aggregate [F.mean median_house_value `as`"avg_value"]
|>D.toMarkdown'
ocean_proximity
Text
avg_value
Double
NEAR BAY361441.9354304636
NEAR OCEAN380041.63071895426
INLAND234817.86695906433
<1H OCEAN333411.75125531096

Compare this to the manual version which requires spelling out every column name and type:

-- Without TH — every column needs its name and type spelled out
df |>D.derive "rooms_per_household"
(F.col @Double"total_rooms"/F.col @Double"households")
|>D.filterWhere (F.col @Double"median_income".>.F.lit 5)
|>D.take5|>D.toMarkdown'
longitude
Double
latitude
Double
housing_median_age
Double
total_rooms
Double
total_bedrooms
Maybe Double
population
Double
households
Double
median_income
Double
median_house_value
Double
ocean_proximity
Text
rooms_per_household
Double
-122.2337.8841.0880.0Just 129.0322.0126.08.3252452600.0NEAR BAY6.984126984126984
-122.2237.8621.07099.0Just 1106.02401.01138.08.3014358500.0NEAR BAY6.238137082601054
-122.2437.8552.01467.0Just 190.0496.0177.07.2574352100.0NEAR BAY8.288135593220339
-122.2537.8552.01274.0Just 235.0558.0219.05.6431000000000004341300.0NEAR BAY5.8173515981735155
-122.2937.8249.0135.0Just 29.086.023.06.118375000.0NEAR BAY5.869565217391305

Generate a schema type from a CSV

deriveSchemaFromCsvFile generates a type synonym for use with the typed API — instead of manually writing out every column name and type:

-- Generates:-- type HousingSchema = '[ '("longitude", Double)-- , '("latitude", Double)-- , '("total_rooms", Double)-- , ...-- ]$(DT.deriveSchemaFromCsvFile "HousingSchema""./data/housing.csv")

Generate a schema (and a row bridge) from a record ADT

When the canonical row shape lives in your code as a Haskell record, deriveSchemaFromType produces both the typed schema and a HasSchema instance that converts between [Order] and a DataFrame (or TypedDataFrame OrderSchema) at runtime:

dataOrder=Order{orderId::Int64
, region::Text
, amount::Double}deriving (Show, Eq)
$(DT.deriveSchemaFromType ''Order)
-- expands to:-- type OrderSchema =-- '[ '("order_id", Int64), '("region", Text), '("amount", Double)]-- instance DT.HasSchema Order where-- type Schema Order = OrderSchema-- toColumns = ...-- fromColumns = ...xs:: [Order]
xs = [Order1"us"10.0, Order2"eu"20.5]
-- Untyped: [Order] -> DataFrameordersDf::D.DataFrame
ordersDf =D.fromRecords xs
ordersDf |>D.toMarkdown'
order_id
Int64
region
Text
amount
Double
1us10.0
2eu20.5

The runtime-checked round-trip back to records:

D.toRecords ordersDf ::EitherText [Order]

Right [Order {orderId = 1, region = "us", amount = 10.0},Order {orderId = 2, region = "eu", amount = 20.5}]

And the typed bridge — [Order] to TypedDataFrame OrderSchema and back:

DT.thaw (DT.fromRecordsTyped xs ::DT.TypedDataFrameOrderSchema) |>D.toMarkdown'
order_id
Int64
region
Text
amount
Double
1us10.0
2eu20.5

Field names are translated camelCase → snake_case by default; override the translation with deriveSchemaFromTypeWith defaultSchemaOptions{nameTransform = id} (or any String -> String).

If all you need is a runtime Schema to drive readCsvWithSchema (no typed-dataframe machinery), there's a companion splice in DataFrame.Internal.Schema (re-exported from DataFrame):

$(D.deriveSchema ''Order)
-- emits:-- orderSchema :: Schema-- orderSchema = makeSchema [("order_id", schemaType @Int64), ...]-- orderOrderId :: Expr Int64-- orderOrderId = col "order_id"-- orderRegion :: Expr Text-- orderRegion = col "region"-- orderAmount :: Expr Double-- orderAmount = col "amount"orders::IOD.DataFrame
orders =do
raw <-D.readCsvWithSchema orderSchema "./data/orders.csv"pure (D.filter orderAmount (>100) raw)

Each record field gets a typed accessor named <lower-first TyConName><UpperFirst FieldName>, so data Order { customerId :: Int } yields orderCustomerId :: Expr Int = col "customer_id". That's the same shape as $(D.declareColumns df) produces from a runtime DataFrame, but driven off the ADT instead of an existing frame.

If you'd rather not depend on Template Haskell, the same schema is available via GHC.Generics (shown here on an equivalent record):

importGHC.Generics (Generic)
importDataFrame.Typed (Schema)
dataOrderG=OrderG{orderGId::Int64
, regionG::Text
, amountG::Double}deriving (Generic)
typeOrderGSchema=DT.SchemaOfOrderGinstanceDT.HasSchemaOrderGwheretypeSchemaOrderG=OrderGSchema
toColumns =DT.genericToColumns
fromColumns =DT.genericFromColumns

Typed API

When you want compile-time guarantees that column names exist and types match, wrap your DataFrame in a TypedDataFrame:

typeEmployeeSchema=
'[ '("name", Text)
, '("department", Text)
, '("salary", Double)
]
employees <-D.readCsv "./data/employees.csv"caseDT.freeze @EmployeeSchema employees ofNothing->"Schema mismatch!"Just tdf -> tdf
|>DT.derive @"bonus" (DT.col @"salary"*DT.lit 0.1)
|>DT.filterWhere (DT.col @"salary"DT..>.DT.lit 50000)
|>DT.select @'["name", "bonus"]
|>DT.thaw
|>D.toMarkdown'
name
Text
bonus
Double
Alice8500.0
Carol12000.0
Dave5200.0
Frank6700.0

DT.freeze validates the runtime DataFrame against your schema once at the boundary. After that, every column access is checked at compile time:

-- Typo in column name -> compile error
tdf |> DT.filterWhere (DT.col @"slary" DT..>. DT.lit 50000)
-- error: Column 'slary' not found in schema
-- Wrong type -> compile error
tdf |> DT.filterWhere (DT.col @"name" DT..>. DT.lit 50000)
-- error: Couldn't match type 'Text' with 'Double'

filterAllJust goes further — it strips Maybe from every column in the schema type, so downstream code can't accidentally treat cleaned columns as nullable:

typeScoreSchema= '[ '("name", Text), '("score", MaybeDouble)]
scoresDf =D.fromNamedColumns
[ ("name", D.fromList ["a", "b", "c"::Text])
, ("score", D.fromList [Just1.0, Nothing, Just3.0::MaybeDouble])
]
Just stdf =DT.freeze @ScoreSchema scoresDf
-- filterAllJust drops the null row and changes the column type from-- (Maybe Double) to Double, so `scaled` can multiply it directly.DT.thaw (DT.filterAllJust stdf |>DT.derive @"scaled" (DT.col @"score"*DT.lit 100)) |>D.toMarkdown'
name
Text
score
Double
scaled
Double
a1.0100.0
c3.0300.0

Features

I/O: CSV, TSV, Parquet (Snappy, ZSTD, Gzip), JSON. Read Parquet from Hugging Face datasets (hf:// URIs) via the dataframe-huggingface package. Column projection and predicate pushdown for Parquet reads.

Operations: filter, select, derive, groupBy, aggregate, joins (inner, left, right, full outer), sort, sample, stratified sample, distinct, k-fold splits.

Expressions: typed column references (F.col @Double "x"), arithmetic, comparisons, logical operators, nullable-aware three-valued logic (.==, .&&), string matching (like, regex), casting, and user-defined functions via lift/lift2.

Statistics: mean, median, mode, variance, standard deviation, percentiles, inter-quartile range, correlation, skewness, frequency tables, imputation.

Plotting: terminal plots (histogram, scatter, line, bar, box, pie, heatmap, stacked bar, correlation matrix) and interactive HTML plots.

Lazy engine: streaming query execution for files that don't fit in memory. Rule-based optimizer with filter fusion, predicate pushdown, and dead column elimination. Pull-based executor with configurable batch sizes.

Interop: Arrow C Data Interface for zero-copy round-trips with Python and Polars.

ML: decision trees (TAO algorithm), feature synthesis, k-fold cross-validation, stratified sampling.

Notebooks: IHaskell integration with pre-built Binder examples.

Lazy Queries

For files too large to fit in memory, DataFrame.Lazy provides a streaming query engine. Declare a schema, build a query plan with the same familiar operations, and runDataFrame runs it through an optimizer before streaming results batch-by-batch:

importqualifiedDataFrame.LazyasLimportDataFrame.Internal.Schema (schemaType, makeSchema)
housingSchema = makeSchema
[ ("longitude", schemaType @Double)
, ("latitude", schemaType @Double)
, ("housing_median_age", schemaType @Double)
, ("total_rooms", schemaType @Double)
, ("total_bedrooms", schemaType @(MaybeDouble))
, ("population", schemaType @Double)
, ("households", schemaType @Double)
, ("median_income", schemaType @Double)
, ("median_house_value", schemaType @Double)
, ("ocean_proximity", schemaType @Text)
]
lazyResult <-L.runDataFrame $L.scanCsv housingSchema "./data/housing.csv"|>L.filter (F.col @Double"median_income".>.F.lit 5)
|>L.derive "value_per_income"
(F.col @Double"median_house_value"/F.col @Double"median_income")
|>L.select ["ocean_proximity", "median_house_value", "value_per_income"]
|>L.take1000D.take10 lazyResult |>D.toMarkdown'
ocean_proximity
Text
median_house_value
Double
value_per_income
Double
NEAR BAY452600.054365.06029885168
NEAR BAY358500.043185.48678536151
NEAR BAY352100.048515.997464656764
NEAR BAY341300.060480.94132657581
NEAR BAY75000.012258.307046074891
NEAR BAY262500.051554.49064163246
NEAR BAY327600.055908.25312308007
NEAR BAY347600.065748.65703260951
NEAR BAY366100.061467.42780389524
NEAR BAY373600.058895.860264211624

The optimizer pushes the filter into the scan, drops unreferenced columns before reading, and stops pulling batches once 1000 rows have been collected.

Documentation

About

A fast, safe, and intuitive DataFrame library.

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

260 stars

Watchers

9 watching

Forks

Releases

Packages

Used by

Contributors

Languages