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.

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