Main Content

Unstack Table Variables

Distribute values from one table variable to multiple table variables in the Live Editor

Since R2020a

Description

The Unstack Table Variables task lets you interactively unstack, or distribute, values in a table or timetable from one variable to multiple variables. The task automatically generates MATLAB® code for your live script.

Unstack Table Variables task in Live Editor

Open the Task

To add the Unstack Table Variables task to a live script in the MATLAB Editor:

  • On the Live Editor tab, select Task > Unstack Table Variables.

  • In a code block in the script, type a relevant keyword, such as unstack or table. Select Unstack Table Variables from the suggested command completions.

Examples

expand all

This example shows how to unstack values from one variable in an input table and distribute them to multiple variables in an output table by using the Unstack Table Variables Live Editor task.

First, load a table that contains estimated influenza rates along the east coast of the United States. The table has a variable with flu rates and another variable indicating whether the rates are for the Northeast (NE), Mid-Atlantic (MidAtl), or Southeast (SE) regions. (These data come from the Google Flu Trends project, since discontinued.)

load fluRate

Add the Unstack Table Variables task to your live script. Unstack the Flu Rate variable so that the output table has variables named NE, MidAtl, and SE, containing flu rates for those regions.

  • To group the data by month, select the Group by menu item below the Month variable in the task.

  • To select the names of the output variables, click the radio button Names of new table variables above the Region variable. For each unique value in Region, there is a corresponding variable in the output table.

  • To distribute values from the Flu Rate variable into the NE, MidAtl, and SE variables in the output, click the radio button Values in new table variables above Flu Rate.

Related Examples

Version History

Introduced in R2020a

expand all

See Also

Functions

Live Editor Tasks

Apps