some fixes
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
\exercisechapter{Resampling methods}
|
||||
|
||||
|
||||
\entermde{Resampling methoden}{Resampling methods} are applied to
|
||||
\entermde{Resampling-Methoden}{Resampling methods} are applied to
|
||||
generate distributions of statistical measures via resampling of
|
||||
existing samples. Resampling offers several advantages:
|
||||
\begin{itemize}
|
||||
@@ -80,10 +80,10 @@ distribution of average values around the true mean of the population
|
||||
|
||||
Alternatively, we can use \enterm{bootstrapping}
|
||||
(\determ[Bootstrap!Verfahren]{Bootstrapverfahren}) to generate new
|
||||
samples from one set of measurements
|
||||
(\entermde{Resampling}{resampling}). From these bootstrapped samples
|
||||
we compute the desired statistical measure and estimate their
|
||||
distribution (\entermde{Bootstrap!Verteilung}{bootstrap distribution},
|
||||
samples from one set of measurements by means of resampling. From
|
||||
these bootstrapped samples we compute the desired statistical measure
|
||||
and estimate their distribution
|
||||
(\entermde{Bootstrap!Verteilung}{bootstrap distribution},
|
||||
\subfigref{bootstrapsamplingdistributionfig}{c}). Interestingly, this
|
||||
distribution is very similar to the sampling distribution regarding
|
||||
its width. The only difference is that the bootstrapped values are
|
||||
|
||||
@@ -24,7 +24,7 @@ for i in range(nresamples) :
|
||||
musrs.append(np.mean(rng.randn(nsamples)))
|
||||
hmusrs, _ = np.histogram(musrs, bins, density=True)
|
||||
|
||||
fig, ax = plt.subplots(figsize=cm_size(figure_width, 1.05*figure_height))
|
||||
fig, ax = plt.subplots(figsize=cm_size(figure_width, 1.1*figure_height))
|
||||
fig.subplots_adjust(**adjust_fs(left=4.0, bottom=2.7, right=1.5))
|
||||
ax.set_xlabel('Mean')
|
||||
ax.set_xlim(-0.4, 0.4)
|
||||
|
||||
Reference in New Issue
Block a user