Tables

Example
Class Number of First Time Takers Program First Time Taker Pass Rate National First Time Taker Pass Rate
2011 19 95% 91%
2012 26 96% 93%
2013 31 87% 93%
2014 30 100% 94%
2015 30 100% 95%
2016 28 96% 96%
2017 34 97% 97%
<!-- .full-width is needed until v1.0.0-RC2 is released -->
<table class="text-align-center full-width">
    <thead>
        <tr>
            <th><b>Class</b></th>
            <th><b class="text-wrap">Number of First Time Takers</b></th>
            <th><b class="text-wrap">Program First Time Taker Pass Rate</b></th>
            <th><b class="text-wrap">National First Time Taker Pass Rate</b></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>2011</td>
            <td>19</td>
            <td>95%</td>
            <td>91%</td>
        </tr>
        <tr>
            <td>2012</td>
            <td>26</td>
            <td>96%</td>
            <td>93%</td>
        </tr>
        <tr>
            <td>2013</td>
            <td>31</td>
            <td>87%</td>
            <td>93%</td>
        </tr>
        <tr>
            <td>2014</td>
            <td>30</td>
            <td>100%</td>
            <td>94%</td>
        </tr>
        <tr>
            <td>2015</td>
            <td>30</td>
            <td>100%</td>
            <td>95%</td>
        </tr>
        <tr>
            <td>2016</td>
            <td>28</td>
            <td>96%</td>
            <td>96%</td>
        </tr>
        <tr>
            <td>2017</td>
            <td>34</td>
            <td>97%</td>
            <td>97%</td>
        </tr>
    </tbody>
</table>
Example
Class Marticulants Graduates Rate
2011 19 19 100%
2012 27 26 96%
2013 31 31 100%
2014 32 30 97%
2015 32 30 100%*
2016 30 28 97%*
2017 35 34 97%
2018 40

*Excluding students who elected to withdraw

<!-- .full-width is needed until v1.0.0-RC2 is released -->
<table class="border text-align-center full-width">
    <thead>
        <tr class="font-weight-bold">
            <th>Class</th>
            <th>Marticulants</th>
            <th>Graduates</th>
            <th>Rate</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>2011</td>
            <td>19</td>
            <td>19</td>
            <td>100%</td>
        </tr>
        <tr>
            <td>2012</td>
            <td>27</td>
            <td>26</td>
            <td>96%</td>
        </tr>
        <tr>
            <td>2013</td>
            <td>31</td>
            <td>31</td>
            <td>100%</td>
        </tr>
        <tr>
            <td>2014</td>
            <td>32</td>
            <td>30</td>
            <td>97%</td>
        </tr>
        <tr>
            <td>2015</td>
            <td>32</td>
            <td>30</td>
            <td>100%&#42;</td>
        </tr>
        <tr>
            <td>2016</td>
            <td>30</td>
            <td>28</td>
            <td>97%&#42;</td>
        </tr>
        <tr>
            <td>2017</td>
            <td>35</td>
            <td>34</td>
            <td>97%</td>
        </tr>
        <tr>
            <td>2018</td>
            <td>40</td>
            <td></td>
            <td></td>
        </tr>
    </tbody>
</table>
<p class="caption text-align-center">
    <i>&#42;Excluding students who elected to withdraw</i>
</p>