plotprofile
Plot expected marginal means with optional grouping
Description
plotprofile(
specifies additional options by one or more name-value arguments. For example, you
can specify the factors to group by or change the line colors.rm
,X
,Name,Value
)
returns handles
H
= plotprofile(___)H
to the plotted lines.
Examples
Plot Expected Marginal Means
Load the sample data.
load fisheriris
The column vector species
consists of iris flowers of three different species: setosa, versicolor, and virginica. The double matrix meas
consists of four types of measurements on the flowers: the length and width of sepals and petals in centimeters, respectively.
Store the data in a table array.
t = table(species,meas(:,1),meas(:,2),meas(:,3),meas(:,4),... 'VariableNames',{'species','meas1','meas2','meas3','meas4'}); Meas = dataset([1 2 3 4]','VarNames',{'Measurements'});
Fit a repeated measures model, where the measurements are the responses and the species is the predictor variable.
rm = fitrm(t,'meas1-meas4~species','WithinDesign',Meas);
Perform data grouped by the factor species.
plotprofile(rm,'species')
The estimated marginal means seem to differ with group. You can compute the standard error and the 95% confidence intervals for the marginal means using the margmean
method.
Plot Marginal Means for Two Groups
Load the sample data.
load repeatedmeas
The table between
includes the between-subject variables age, IQ, group, gender, and eight repeated measures y1
through y8
as responses. The table within
includes the within-subject variables w1
and w2
. This is simulated data.
Fit a repeated measures model, where the repeated measures y1
through y8
are the responses, and age, IQ, group, gender, and the group-gender interaction are the predictor variables. Also specify the within-subject design matrix.
rm = fitrm(between,'y1-y8 ~ Group*Gender + Age + IQ','WithinDesign',within);
Plot the estimated marginal means based on the factors Group
and Gender
.
ax1 = subplot(1,2,1); plotprofile(rm,'Group') ax2 = subplot(1,2,2); plotprofile(rm,'Gender') linkaxes([ax1 ax2],'y')
Plot the estimated marginal means based on the factor Group
and grouped by Gender
.
figure() plotprofile(rm,'Group','Group','Gender')
Input Arguments
rm
— Repeated measures model
RepeatedMeasuresModel
object
Repeated measures model, returned as a RepeatedMeasuresModel
object.
For properties and methods of this object, see RepeatedMeasuresModel
.
X
— Name of between-subjects or within-subjects factor
character vector | string scalar
Name of a between-subjects or within-subjects factor, specified as a character vector or string scalar.
For example, if you want to plot the marginal means as a function of the groups of a between-subjects variable drug, you can specify it as follows.
Example: 'Drug'
Data Types: char
| string
ax
— Target axes
Axes
object
Since R2024a
Target axes, specified as an Axes object. If you do not specify the axes,
then plotprofile
uses the current axes (gca
).
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN
, where Name
is
the argument name and Value
is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Example: plotprofile(rm,'Color','rrbb')
Group
— Name of between-subject factor or factors
character vector | string array | cell array of character vectors
Name of between-subject factor or factors, specified as the comma-separated pair consisting of
'Group'
and a character vector, string array, or cell array of
character vectors. This name-value pair argument groups the lines according to the
factor values.
For example, if you have two between-subject factors, drug and sex, and you want to group the lines in the plot according to them, you can specify these factors as follows.
Example: 'Group',{'Drug','Sex'}
Data Types: char
| string
| cell
Marker
— Marker to use for each group
string array | cell array of character vectors
Marker to use for each group, specified as the comma-separated pair consisting of
'Marker'
and a string array or cell array of character
vectors.
For example, if you have two between-subject factors, drug and
sex, with each having two groups, you can specify o
as
the marker for the groups of drug and x
as the
marker for the groups of sex as follows.
Example: 'Marker',{'o','o','x','x'}
Data Types: string
| cell
Color
— Color for each group
character vector | string array | cell array of character vectors | rows of a three-column RGB matrix
Color for each group, specified as the comma-separated pair consisting of
'Color'
and a character vector, string array, cell array of
character vectors, or rows of a three-column RGB matrix.
For example, if you have two between-subject factors, drug and sex, with each having two groups, you can specify red as the color for the groups of drug and blue as the color for the groups of sex as follows.
Example: 'Color','rrbb'
Data Types: single
| double
| char
| string
| cell
LineStyle
— Line style for each group
string array | cell array of character vectors
Line style for each group, specified as the comma-separated pair consisting of
'LineStyle'
and a string array or cell array of character
vectors.
For example, if you have two between-subject factors, drug and
sex, with each having two groups, you can specify -
as
the line style of one group and :
as the line style
for the other group as follows.
Example: 'LineStyle',{'-' ':' '-' ':'}
Data Types: string
| cell
Output Arguments
H
— Handle to plotted lines
handle
Handle to plotted lines, returned as a handle.
Version History
Introduced in R2014aR2024a: Specify target axes
Specify the target axes for the plot by using the ax
input
argument.
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)