# -*- coding: utf-8 -*-
"""
Created on Fri Dec 10 11:44:41 2021

@author: Sim
"""
import numpy as np
import matplotlib.pyplot as plt
import stemgraphic

x =  np.array([9, 7, 24, 30, 14, 7, 16, 20, 23, 23, 25, 
               23, 37, 29, 6, 5, 23, 24, 22, 10, 21])

plt.boxplot(x)
stemgraphic.stem_graphic(x, scale = 10)
