diff --git a/docs/tutorials/getting_started.rst b/docs/tutorials/getting_started.rst index 4509de94a7..e63a806f99 100644 --- a/docs/tutorials/getting_started.rst +++ b/docs/tutorials/getting_started.rst @@ -393,4 +393,17 @@ into one level: parallel_data = parallel_exp.run(backend, seed_simulator=101).block_for_results() for result in parallel_data.analysis_results(): - print(result) \ No newline at end of file + print(result) + +Broadcating analysis option to child experiments +----------------------------- + +If we would like to set analysis options to each of the child experiments, we can use the keyword +'broadcast' when configuring an analysis option for a composite experiment. + +.. jupyter-execute:: + + parallel_exp.analysis.set_options(plot=False, broadcast=True) + +When the 'broadcast' flag is set, the specified option will be applied to each child experiment. +In this instance, the analysis will not generate a figure for the child experiment after the analysis. \ No newline at end of file