# -*- coding: utf-8 -*-
"""
Created on Tue Nov 16 20:38:41 2021
@author: Machi
"""
import numpy as np
import matplotlib.pyplot as plt
%config InlineBackend.figure_format = 'retina'
np.random.seed(190801)
mu = 200
sigma = 25
n_bins = 50
x = np.random.normal(mu, sigma, size=100