Colleagues,
I'm generating a number of strip plots using the code below. The idea is that indicators defined in dotinds will be often changed. How can automatically pass the names of generated graph to the combine command in order to create one graph with all strip plots.
I'm generating a number of strip plots using the code below. The idea is that indicators defined in dotinds will be often changed. How can automatically pass the names of generated graph to the combine command in order to create one graph with all strip plots.
Code:
// Define indicators to graph
local dotinds trunk weight price mpg rep78 headroom
// Generate dot plots for some indicators
foreach var of varlist `dotinds' {
stripplot `var', name(plot_`var')
}

). Their gallery contains a stripplot illustration with x-labels and the corresponding syntax.

Comment