@@ -126,7 +126,7 @@ numpy arrays or pandas.Series.
126126Run the CmdStan inference engine
127127^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
128128
129- For each CmdStan inference method, there is a corresponding method on the :class: `CmdStanModel ` class.
129+ For each CmdStan inference method, there is a corresponding method on the :class: `CmdStanModel ` class.
130130An example of each is provided in the `next section <examples.rst >`__
131131
132132* The :meth: `~CmdStanModel.sample ` method runs Stan's
@@ -136,14 +136,14 @@ An example of each is provided in the `next section <examples.rst>`__
136136 a sample from the posterior distribution of the model conditioned on the data.
137137
138138* The :meth: `~CmdStanModel.variational ` method runs Stan's
139- `Automatic Differentiation Variational Inference (ADVI) algorithm <https://mc-stan.org/docs/reference-manual/vi-algorithms-chapter.html >`_.
139+ `Automatic Differentiation Variational Inference (ADVI) algorithm <https://mc-stan.org/docs/reference-manual/vi-algorithms-chapter.html >`_.
140140
141141 It returns a :class: `CmdStanVB ` object which contains
142142 an approximation the posterior distribution in the unconstrained variable space.
143143
144144* The :meth: `~CmdStanModel.optimize ` runs one of
145145 `Stan's optimization algorithms <https://mc-stan.org/docs/reference-manual/optimization-algorithms-chapter.html >`_
146- to find a mode of the density specified by the Stan program.
146+ to find a mode of the density specified by the Stan program.
147147
148148 It returns a :class: `CmdStanMLE ` object.
149149
@@ -154,16 +154,16 @@ An example of each is provided in the `next section <examples.rst>`__
154154
155155 It returns a :class: `CmdStanGQ ` object.
156156
157-
157+
158158Validate, view, export the inference engine outputs
159159^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
160160
161- The inference engine results objects
161+ The inference engine results objects
162162:class: `CmdStanMCMC `, :class: `CmdStanVB `, :class: `CmdStanMLE ` and :class: `CmdStanGQ, `
163163contain the CmdStan method configuration information
164164and the location of all output files produced.
165165The provide a common set methods for accessing the inference results and metadata,
166- as well as method-specific informational properties and methods.objects
166+ as well as method-specific informational properties and methods.objects
167167
168168Metadata
169169--------
@@ -191,14 +191,14 @@ the object's :attr:`~CmdStanMCMC.metadata` property.
191191 property specifies the names, dimensions of the Stan model variables.
192192
193193Output data
194- -----------
194+ -----------
195195
196196The CSV data is assembled into the inference result object.
197197CmdStanPy provides accessor methods which return this information
198198either as columnar data (i.e., in terms of the CSV file columns),
199199or as method and model variables.
200200
201- The :meth: `~CmdStanMCMC.draws ` and :meth: `~CmdStanMCMC.draws_pd ` methods
201+ The :meth: `~CmdStanMCMC.draws ` and :meth: `~CmdStanMCMC.draws_pd ` methods
202202for both :class: `CmdStanMCMC ` and :class: `CmdStanGQ ` return the sample contents
203203in columnar format, as a numpy.ndarray or pandas.DataFrame, respectively. Similarly,
204204the :meth: `~CmdStanMCMC.draws_xr ` method of these two objects returns the sample
0 commit comments