This website is for version 5. You can find the documentation for version 4 here.

Data Transformations#

It is often necessary to transform or filter data in the process of visualizing it. In Altair you can do this one of two ways:

  1. Before the chart definition, using standard pandas data transformations.

  2. Within the chart definition, using Vega-Lite’s data transformation tools.

In most cases, we suggest that you use the first approach, because it is more straightforward to those who are familiar with data manipulation in Python, and because the pandas package offers much more flexibility than Vega-Lite in available data manipulations.

The second approach becomes useful when the data source is not a dataframe, but, for example, a URL pointer to a JSON or CSV file. It can also be useful in a compound chart where different views of the dataset require different transformations.

This second approach – specifying data transformations within the chart specification itself – can be accomplished using the transform_* methods of top-level objects:

Transform

Method

Description

Aggregate

transform_aggregate()

Create a new data column by aggregating an existing column.

Bin

transform_bin()

Create a new data column by binning an existing column.

Calculate

transform_calculate()

Create a new data column using an arithmetic calculation on an existing column.

Density

transform_density()

Create a new data column with the kernel density estimate of the input.

Extent

transform_extent()

Find the extent of a field and store the result in a parameter.

Filter

transform_filter()

Select a subset of data based on a condition.

Flatten

transform_flatten()

Flatten array data into columns.

Fold

transform_fold()

Convert wide-form data into long-form data (opposite of pivot).

Impute

transform_impute()

Impute missing data.

Join Aggregate

transform_joinaggregate()

Aggregate transform joined to original data.

LOESS

transform_loess()

Create a new column with LOESS smoothing of data.

Lookup

transform_lookup()

One-sided join of two datasets based on a lookup key.

Pivot

transform_pivot()

Convert long-form data into wide-form data (opposite of fold).

Quantile

transform_quantile()

Compute empirical quantiles of a dataset.

Regression

transform_regression()

Fit a regression model to a dataset.

Sample

transform_sample()

Random sub-sample of the rows in the dataset.

Stack

transform_stack()

Compute stacked version of values.

TimeUnit

transform_timeunit()

Discretize/group a date by a time unit (day, month, year, etc.)

Window

transform_window()

Compute a windowed aggregation

Accessing Transformed Data#

When charts are displayed, data transformations are performed in the browser by the Vega JavaScript library. It’s often helpful to inspect transformed data results in the process of building a chart. One approach is to display the transformed data results in a table composed of Text marks as in the Brushing Scatter Plot to Show Data on a Table gallery example.

While this approach works, it’s somewhat cumbersome, and still does not make it possible to access the transformed data from Python. To make transformed data results available in Python, Altair provides the transformed_data() Chart method which integrates with VegaFusion to evaluate data transformations in the Python kernel.

First, install VegaFusion with the embed extras enabled.

pip install "vegafusion[embed]"

Then create an Altair chart and call the transformed_data() method to extract a pandas DataFrame containing the transformed data.

import altair as alt
from vega_datasets import data

cars = data.cars.url
chart = alt.Chart(cars).mark_bar().encode(
    y='Cylinders:O',
    x='mean_acc:Q'
).transform_aggregate(
    mean_acc='mean(Acceleration)',
    groupby=["Cylinders"]
)
chart.transformed_data()
       Cylinders   mean_acc  mean_acc_start  mean_acc_end
    0          8  12.837037             0.0     12.837037
    1          4  16.616425             0.0     16.616425
    2          6  16.263095             0.0     16.263095
    3          3  13.250000             0.0     13.250000
    4          5  18.633333             0.0     18.633333

The transformed_data() method currently supports most, but not all, of Altair’s transforms. See the table below.

Transform

Supported

Aggregate

Bin

Calculate

Density

Extent

Filter

Flatten

Fold

Impute

Join Aggregate

LOESS

Lookup

Pivot

Quantile

Regression

Sample

Stack

TimeUnit

Window