Saturday, October 3, 2020

Render pandas Dataframe as HTML

 Here is a situation where we go bunch of spreadsheet files and we want all of them converted into beautiful HTML table.

Fortunately, pandas has the 'to_html()' method which converts a dataframe into html table. However, the table will need some CSS applied to make is look beautiful. So, instead of writing the CSS manually, we can use Bootstrap classes to achieve same decoration.



First lets read the CSV files and create a list dataframes using the code below...

import glob
import pandas as pd


csv_files = glob.glob(r'C:\Users\Yusuf_08039508010\Desktop\*.csv')

# create dataframe list...
df_list = [pd.read_csv(f) for f in csv_files]


Now, lets use the 'to_html()' method to convert the first dataframe into HTML.


html_df = df_list[0]

# render dataframe as html
html = html_df.to_html()

# write html to file
text_file = open("index.html", "w")
text_file.write(html)
text_file.close()

The resulting HTML looks like this...


That doesn't look good, I know. Let apply some bootstrap classes to enhance its appearance. What we need to do include:-

  1. save the bootstrap cdn link in a variable so we can append it to the html string.
  2. replace the default class with bootstrap classes

boostrap_link = '<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">'

html_df = df_list[0]

# render dataframe as html
html = html_df.to_html()

# replace default class with bootstrap classes
html = html.replace('class="dataframe"', 'class="table table-striped table-hover"')

# write html to file
text_file = open("index.html", "w")
text_file.write(boostrap_link + '\n' + html)
text_file.close()

Now we got something better. You could do a lot more with the bootstrap table classes as seen dark theme below.



Apply this to all other table using for loop

code without bootstrap
for df, fname in zip(df_list, csv_files):
    # render dataframe as html
    html = df.to_html()
    
    # write html to file
    fileName = fname.split('\\')[-1]
    text_file = open(fileName + ".html", "w")
    text_file.write(html)
    text_file.close()
    
print('Done...')


code with bootstrap

boostrap_link = '<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">'


for df, fname in zip(df_list, csv_files):
    # render dataframe as html
    html = df.to_html()

    # replace default class with bootstrap classes
    html = html.replace('class="dataframe"', 'class="table table-dark table-hover"')

    # write html to file
    fileName = fname.split('\\')[-1]
    text_file = open(fileName + ".html", "w")
    text_file.write(boostrap_link + '\n' + html)
    text_file.close()

    
print('Done...')


The HTML code

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<table border="1" class="table table-dark table-hover">
<thead>
<tr style="text-align: right;">
<th></th>
<th>GEO_ID</th>
<th>id</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>NAME</td>
<td>Geographic Area Name</td>
</tr>
<tr>
<th>1</th>
<td>S0801_C01_001E</td>
<td>Estimate!!Total!!Workers 16 years and over</td>
</tr>
<tr>
<th>2</th>
<td>S0801_C01_001M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>3</th>
<td>S0801_C01_002E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>4</th>
<td>S0801_C01_002M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>5</th>
<td>S0801_C01_003E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>6</th>
<td>S0801_C01_003M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>7</th>
<td>S0801_C01_004E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>8</th>
<td>S0801_C01_004M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>9</th>
<td>S0801_C01_005E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>10</th>
<td>S0801_C01_005M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>11</th>
<td>S0801_C01_006E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>12</th>
<td>S0801_C01_006M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>13</th>
<td>S0801_C01_007E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>14</th>
<td>S0801_C01_007M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>15</th>
<td>S0801_C01_008E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>16</th>
<td>S0801_C01_008M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>17</th>
<td>S0801_C01_009E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>18</th>
<td>S0801_C01_009M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>19</th>
<td>S0801_C01_010E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>20</th>
<td>S0801_C01_010M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>21</th>
<td>S0801_C01_011E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>22</th>
<td>S0801_C01_011M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>23</th>
<td>S0801_C01_012E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>24</th>
<td>S0801_C01_012M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>25</th>
<td>S0801_C01_013E</td>
<td>Estimate!!Total!!Workers 16 years and over!!ME...</td>
</tr>
<tr>
<th>26</th>
<td>S0801_C01_013M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>27</th>
<td>S0801_C01_014E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>28</th>
<td>S0801_C01_014M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>29</th>
<td>S0801_C01_015E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>30</th>
<td>S0801_C01_015M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>31</th>
<td>S0801_C01_016E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>32</th>
<td>S0801_C01_016M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>33</th>
<td>S0801_C01_017E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>34</th>
<td>S0801_C01_017M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>35</th>
<td>S0801_C01_018E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>36</th>
<td>S0801_C01_018M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>37</th>
<td>S0801_C01_019E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>38</th>
<td>S0801_C01_019M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>39</th>
<td>S0801_C01_020E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>40</th>
<td>S0801_C01_020M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>41</th>
<td>S0801_C01_021E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>42</th>
<td>S0801_C01_021M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>43</th>
<td>S0801_C01_022E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>44</th>
<td>S0801_C01_022M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>45</th>
<td>S0801_C01_023E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>46</th>
<td>S0801_C01_023M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>47</th>
<td>S0801_C01_024E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>48</th>
<td>S0801_C01_024M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>49</th>
<td>S0801_C01_025E</td>
<td>Estimate!!Total!!Workers 16 years and over!!PL...</td>
</tr>
<tr>
<th>50</th>
<td>S0801_C01_025M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>51</th>
<td>S0801_C01_026E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>52</th>
<td>S0801_C01_026M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>53</th>
<td>S0801_C01_027E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>54</th>
<td>S0801_C01_027M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>55</th>
<td>S0801_C01_028E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>56</th>
<td>S0801_C01_028M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>57</th>
<td>S0801_C01_029E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>58</th>
<td>S0801_C01_029M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>59</th>
<td>S0801_C01_030E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>60</th>
<td>S0801_C01_030M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>61</th>
<td>S0801_C01_031E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>62</th>
<td>S0801_C01_031M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>63</th>
<td>S0801_C01_032E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>64</th>
<td>S0801_C01_032M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>65</th>
<td>S0801_C01_033E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>66</th>
<td>S0801_C01_033M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>67</th>
<td>S0801_C01_034E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>68</th>
<td>S0801_C01_034M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>69</th>
<td>S0801_C01_035E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>70</th>
<td>S0801_C01_035M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>71</th>
<td>S0801_C01_036E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>72</th>
<td>S0801_C01_036M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>73</th>
<td>S0801_C01_037E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>74</th>
<td>S0801_C01_037M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>75</th>
<td>S0801_C01_038E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>76</th>
<td>S0801_C01_038M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>77</th>
<td>S0801_C01_039E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>78</th>
<td>S0801_C01_039M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>79</th>
<td>S0801_C01_040E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>80</th>
<td>S0801_C01_040M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>81</th>
<td>S0801_C01_041E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>82</th>
<td>S0801_C01_041M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>83</th>
<td>S0801_C01_042E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>84</th>
<td>S0801_C01_042M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>85</th>
<td>S0801_C01_043E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>86</th>
<td>S0801_C01_043M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>87</th>
<td>S0801_C01_044E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>88</th>
<td>S0801_C01_044M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>89</th>
<td>S0801_C01_045E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>90</th>
<td>S0801_C01_045M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>91</th>
<td>S0801_C01_046E</td>
<td>Estimate!!Total!!Workers 16 years and over who...</td>
</tr>
<tr>
<th>92</th>
<td>S0801_C01_046M</td>
<td>Margin of Error!!Total MOE!!Workers 16 years a...</td>
</tr>
<tr>
<th>93</th>
<td>S0801_C01_047E</td>
<td>Estimate!!Total!!VEHICLES AVAILABLE!!Workers 1...</td>
</tr>
<tr>
<th>94</th>
<td>S0801_C01_047M</td>
<td>Margin of Error!!Total MOE!!VEHICLES AVAILABLE...</td>
</tr>
<tr>
<th>95</th>
<td>S0801_C01_048E</td>
<td>Estimate!!Total!!VEHICLES AVAILABLE!!Workers 1...</td>
</tr>
<tr>
<th>96</th>
<td>S0801_C01_048M</td>
<td>Margin of Error!!Total MOE!!VEHICLES AVAILABLE...</td>
</tr>
<tr>
<th>97</th>
<td>S0801_C01_049E</td>
<td>Estimate!!Total!!VEHICLES AVAILABLE!!Workers 1...</td>
</tr>
<tr>
<th>98</th>
<td>S0801_C01_049M</td>
<td>Margin of Error!!Total MOE!!VEHICLES AVAILABLE...</td>
</tr>
<tr>
<th>99</th>
<td>S0801_C01_050E</td>
<td>Estimate!!Total!!VEHICLES AVAILABLE!!Workers 1...</td>
</tr>
<tr>
<th>100</th>
<td>S0801_C01_050M</td>
<td>Margin of Error!!Total MOE!!VEHICLES AVAILABLE...</td>
</tr>
<tr>
<th>101</th>
<td>S0801_C01_051E</td>
<td>Estimate!!Total!!VEHICLES AVAILABLE!!Workers 1...</td>
</tr>
<tr>
<th>102</th>
<td>S0801_C01_051M</td>
<td>Margin of Error!!Total MOE!!VEHICLES AVAILABLE...</td>
</tr>
<tr>
<th>103</th>
<td>S0801_C01_052E</td>
<td>Estimate!!Total!!PERCENT ALLOCATED!!Means of t...</td>
</tr>
<tr>
<th>104</th>
<td>S0801_C01_052M</td>
<td>Margin of Error!!Total MOE!!PERCENT ALLOCATED!...</td>
</tr>
<tr>
<th>105</th>
<td>S0801_C01_053E</td>
<td>Estimate!!Total!!PERCENT ALLOCATED!!Private ve...</td>
</tr>
<tr>
<th>106</th>
<td>S0801_C01_053M</td>
<td>Margin of Error!!Total MOE!!PERCENT ALLOCATED!...</td>
</tr>
<tr>
<th>107</th>
<td>S0801_C01_054E</td>
<td>Estimate!!Total!!PERCENT ALLOCATED!!Place of work</td>
</tr>
<tr>
<th>108</th>
<td>S0801_C01_054M</td>
<td>Margin of Error!!Total MOE!!PERCENT ALLOCATED!...</td>
</tr>
<tr>
<th>109</th>
<td>S0801_C01_055E</td>
<td>Estimate!!Total!!PERCENT ALLOCATED!!Time leavi...</td>
</tr>
<tr>
<th>110</th>
<td>S0801_C01_055M</td>
<td>Margin of Error!!Total MOE!!PERCENT ALLOCATED!...</td>
</tr>
<tr>
<th>111</th>
<td>S0801_C01_056E</td>
<td>Estimate!!Total!!PERCENT ALLOCATED!!Travel tim...</td>
</tr>
<tr>
<th>112</th>
<td>S0801_C01_056M</td>
<td>Margin of Error!!Total MOE!!PERCENT ALLOCATED!...</td>
</tr>
<tr>
<th>113</th>
<td>S0801_C01_057E</td>
<td>Estimate!!Total!!PERCENT ALLOCATED!!Vehicles a...</td>
</tr>
<tr>
<th>114</th>
<td>S0801_C01_057M</td>
<td>Margin of Error!!Total MOE!!PERCENT ALLOCATED!...</td>
</tr>
<tr>
<th>115</th>
<td>S0801_C02_001E</td>
<td>Estimate!!Male!!Workers 16 years and over</td>
</tr>
<tr>
<th>116</th>
<td>S0801_C02_001M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>117</th>
<td>S0801_C02_002E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>118</th>
<td>S0801_C02_002M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>119</th>
<td>S0801_C02_003E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>120</th>
<td>S0801_C02_003M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>121</th>
<td>S0801_C02_004E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>122</th>
<td>S0801_C02_004M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>123</th>
<td>S0801_C02_005E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>124</th>
<td>S0801_C02_005M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>125</th>
<td>S0801_C02_006E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>126</th>
<td>S0801_C02_006M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>127</th>
<td>S0801_C02_007E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>128</th>
<td>S0801_C02_007M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>129</th>
<td>S0801_C02_008E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>130</th>
<td>S0801_C02_008M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>131</th>
<td>S0801_C02_009E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>132</th>
<td>S0801_C02_009M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>133</th>
<td>S0801_C02_010E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>134</th>
<td>S0801_C02_010M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>135</th>
<td>S0801_C02_011E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>136</th>
<td>S0801_C02_011M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>137</th>
<td>S0801_C02_012E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>138</th>
<td>S0801_C02_012M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>139</th>
<td>S0801_C02_013E</td>
<td>Estimate!!Male!!Workers 16 years and over!!MEA...</td>
</tr>
<tr>
<th>140</th>
<td>S0801_C02_013M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>141</th>
<td>S0801_C02_014E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>142</th>
<td>S0801_C02_014M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>143</th>
<td>S0801_C02_015E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>144</th>
<td>S0801_C02_015M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>145</th>
<td>S0801_C02_016E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>146</th>
<td>S0801_C02_016M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>147</th>
<td>S0801_C02_017E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>148</th>
<td>S0801_C02_017M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>149</th>
<td>S0801_C02_018E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>150</th>
<td>S0801_C02_018M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>151</th>
<td>S0801_C02_019E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>152</th>
<td>S0801_C02_019M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>153</th>
<td>S0801_C02_020E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>154</th>
<td>S0801_C02_020M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>155</th>
<td>S0801_C02_021E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>156</th>
<td>S0801_C02_021M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>157</th>
<td>S0801_C02_022E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>158</th>
<td>S0801_C02_022M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>159</th>
<td>S0801_C02_023E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>160</th>
<td>S0801_C02_023M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>161</th>
<td>S0801_C02_024E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>162</th>
<td>S0801_C02_024M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>163</th>
<td>S0801_C02_025E</td>
<td>Estimate!!Male!!Workers 16 years and over!!PLA...</td>
</tr>
<tr>
<th>164</th>
<td>S0801_C02_025M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>165</th>
<td>S0801_C02_026E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>166</th>
<td>S0801_C02_026M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>167</th>
<td>S0801_C02_027E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>168</th>
<td>S0801_C02_027M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>169</th>
<td>S0801_C02_028E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>170</th>
<td>S0801_C02_028M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>171</th>
<td>S0801_C02_029E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>172</th>
<td>S0801_C02_029M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>173</th>
<td>S0801_C02_030E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>174</th>
<td>S0801_C02_030M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>175</th>
<td>S0801_C02_031E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>176</th>
<td>S0801_C02_031M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>177</th>
<td>S0801_C02_032E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>178</th>
<td>S0801_C02_032M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>179</th>
<td>S0801_C02_033E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>180</th>
<td>S0801_C02_033M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>181</th>
<td>S0801_C02_034E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>182</th>
<td>S0801_C02_034M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>183</th>
<td>S0801_C02_035E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>184</th>
<td>S0801_C02_035M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>185</th>
<td>S0801_C02_036E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>186</th>
<td>S0801_C02_036M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>187</th>
<td>S0801_C02_037E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>188</th>
<td>S0801_C02_037M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>189</th>
<td>S0801_C02_038E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>190</th>
<td>S0801_C02_038M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>191</th>
<td>S0801_C02_039E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>192</th>
<td>S0801_C02_039M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>193</th>
<td>S0801_C02_040E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>194</th>
<td>S0801_C02_040M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>195</th>
<td>S0801_C02_041E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>196</th>
<td>S0801_C02_041M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>197</th>
<td>S0801_C02_042E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>198</th>
<td>S0801_C02_042M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>199</th>
<td>S0801_C02_043E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>200</th>
<td>S0801_C02_043M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>201</th>
<td>S0801_C02_044E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>202</th>
<td>S0801_C02_044M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>203</th>
<td>S0801_C02_045E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>204</th>
<td>S0801_C02_045M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>205</th>
<td>S0801_C02_046E</td>
<td>Estimate!!Male!!Workers 16 years and over who ...</td>
</tr>
<tr>
<th>206</th>
<td>S0801_C02_046M</td>
<td>Margin of Error!!Male MOE!!Workers 16 years an...</td>
</tr>
<tr>
<th>207</th>
<td>S0801_C02_047E</td>
<td>Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16...</td>
</tr>
<tr>
<th>208</th>
<td>S0801_C02_047M</td>
<td>Margin of Error!!Male MOE!!VEHICLES AVAILABLE!...</td>
</tr>
<tr>
<th>209</th>
<td>S0801_C02_048E</td>
<td>Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16...</td>
</tr>
<tr>
<th>210</th>
<td>S0801_C02_048M</td>
<td>Margin of Error!!Male MOE!!VEHICLES AVAILABLE!...</td>
</tr>
<tr>
<th>211</th>
<td>S0801_C02_049E</td>
<td>Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16...</td>
</tr>
<tr>
<th>212</th>
<td>S0801_C02_049M</td>
<td>Margin of Error!!Male MOE!!VEHICLES AVAILABLE!...</td>
</tr>
<tr>
<th>213</th>
<td>S0801_C02_050E</td>
<td>Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16...</td>
</tr>
<tr>
<th>214</th>
<td>S0801_C02_050M</td>
<td>Margin of Error!!Male MOE!!VEHICLES AVAILABLE!...</td>
</tr>
<tr>
<th>215</th>
<td>S0801_C02_051E</td>
<td>Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16...</td>
</tr>
<tr>
<th>216</th>
<td>S0801_C02_051M</td>
<td>Margin of Error!!Male MOE!!VEHICLES AVAILABLE!...</td>
</tr>
<tr>
<th>217</th>
<td>S0801_C02_052E</td>
<td>Estimate!!Male!!PERCENT ALLOCATED!!Means of tr...</td>
</tr>
<tr>
<th>218</th>
<td>S0801_C02_052M</td>
<td>Margin of Error!!Male MOE!!PERCENT ALLOCATED!!...</td>
</tr>
<tr>
<th>219</th>
<td>S0801_C02_053E</td>
<td>Estimate!!Male!!PERCENT ALLOCATED!!Private veh...</td>
</tr>
<tr>
<th>220</th>
<td>S0801_C02_053M</td>
<td>Margin of Error!!Male MOE!!PERCENT ALLOCATED!!...</td>
</tr>
<tr>
<th>221</th>
<td>S0801_C02_054E</td>
<td>Estimate!!Male!!PERCENT ALLOCATED!!Place of work</td>
</tr>
<tr>
<th>222</th>
<td>S0801_C02_054M</td>
<td>Margin of Error!!Male MOE!!PERCENT ALLOCATED!!...</td>
</tr>
<tr>
<th>223</th>
<td>S0801_C02_055E</td>
<td>Estimate!!Male!!PERCENT ALLOCATED!!Time leavin...</td>
</tr>
<tr>
<th>224</th>
<td>S0801_C02_055M</td>
<td>Margin of Error!!Male MOE!!PERCENT ALLOCATED!!...</td>
</tr>
<tr>
<th>225</th>
<td>S0801_C02_056E</td>
<td>Estimate!!Male!!PERCENT ALLOCATED!!Travel time...</td>
</tr>
<tr>
<th>226</th>
<td>S0801_C02_056M</td>
<td>Margin of Error!!Male MOE!!PERCENT ALLOCATED!!...</td>
</tr>
<tr>
<th>227</th>
<td>S0801_C02_057E</td>
<td>Estimate!!Male!!PERCENT ALLOCATED!!Vehicles av...</td>
</tr>
<tr>
<th>228</th>
<td>S0801_C02_057M</td>
<td>Margin of Error!!Male MOE!!PERCENT ALLOCATED!!...</td>
</tr>
<tr>
<th>229</th>
<td>S0801_C03_001E</td>
<td>Estimate!!Female!!Workers 16 years and over</td>
</tr>
<tr>
<th>230</th>
<td>S0801_C03_001M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>231</th>
<td>S0801_C03_002E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>232</th>
<td>S0801_C03_002M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>233</th>
<td>S0801_C03_003E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>234</th>
<td>S0801_C03_003M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>235</th>
<td>S0801_C03_004E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>236</th>
<td>S0801_C03_004M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>237</th>
<td>S0801_C03_005E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>238</th>
<td>S0801_C03_005M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>239</th>
<td>S0801_C03_006E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>240</th>
<td>S0801_C03_006M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>241</th>
<td>S0801_C03_007E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>242</th>
<td>S0801_C03_007M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>243</th>
<td>S0801_C03_008E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>244</th>
<td>S0801_C03_008M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>245</th>
<td>S0801_C03_009E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>246</th>
<td>S0801_C03_009M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>247</th>
<td>S0801_C03_010E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>248</th>
<td>S0801_C03_010M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>249</th>
<td>S0801_C03_011E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>250</th>
<td>S0801_C03_011M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>251</th>
<td>S0801_C03_012E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>252</th>
<td>S0801_C03_012M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>253</th>
<td>S0801_C03_013E</td>
<td>Estimate!!Female!!Workers 16 years and over!!M...</td>
</tr>
<tr>
<th>254</th>
<td>S0801_C03_013M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>255</th>
<td>S0801_C03_014E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>256</th>
<td>S0801_C03_014M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>257</th>
<td>S0801_C03_015E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>258</th>
<td>S0801_C03_015M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>259</th>
<td>S0801_C03_016E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>260</th>
<td>S0801_C03_016M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>261</th>
<td>S0801_C03_017E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>262</th>
<td>S0801_C03_017M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>263</th>
<td>S0801_C03_018E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>264</th>
<td>S0801_C03_018M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>265</th>
<td>S0801_C03_019E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>266</th>
<td>S0801_C03_019M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>267</th>
<td>S0801_C03_020E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>268</th>
<td>S0801_C03_020M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>269</th>
<td>S0801_C03_021E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>270</th>
<td>S0801_C03_021M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>271</th>
<td>S0801_C03_022E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>272</th>
<td>S0801_C03_022M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>273</th>
<td>S0801_C03_023E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>274</th>
<td>S0801_C03_023M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>275</th>
<td>S0801_C03_024E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>276</th>
<td>S0801_C03_024M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>277</th>
<td>S0801_C03_025E</td>
<td>Estimate!!Female!!Workers 16 years and over!!P...</td>
</tr>
<tr>
<th>278</th>
<td>S0801_C03_025M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>279</th>
<td>S0801_C03_026E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>280</th>
<td>S0801_C03_026M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>281</th>
<td>S0801_C03_027E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>282</th>
<td>S0801_C03_027M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>283</th>
<td>S0801_C03_028E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>284</th>
<td>S0801_C03_028M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>285</th>
<td>S0801_C03_029E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>286</th>
<td>S0801_C03_029M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>287</th>
<td>S0801_C03_030E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>288</th>
<td>S0801_C03_030M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>289</th>
<td>S0801_C03_031E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>290</th>
<td>S0801_C03_031M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>291</th>
<td>S0801_C03_032E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>292</th>
<td>S0801_C03_032M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>293</th>
<td>S0801_C03_033E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>294</th>
<td>S0801_C03_033M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>295</th>
<td>S0801_C03_034E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>296</th>
<td>S0801_C03_034M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>297</th>
<td>S0801_C03_035E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>298</th>
<td>S0801_C03_035M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>299</th>
<td>S0801_C03_036E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>300</th>
<td>S0801_C03_036M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>301</th>
<td>S0801_C03_037E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>302</th>
<td>S0801_C03_037M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>303</th>
<td>S0801_C03_038E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>304</th>
<td>S0801_C03_038M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>305</th>
<td>S0801_C03_039E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>306</th>
<td>S0801_C03_039M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>307</th>
<td>S0801_C03_040E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>308</th>
<td>S0801_C03_040M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>309</th>
<td>S0801_C03_041E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>310</th>
<td>S0801_C03_041M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>311</th>
<td>S0801_C03_042E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>312</th>
<td>S0801_C03_042M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>313</th>
<td>S0801_C03_043E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>314</th>
<td>S0801_C03_043M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>315</th>
<td>S0801_C03_044E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>316</th>
<td>S0801_C03_044M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>317</th>
<td>S0801_C03_045E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>318</th>
<td>S0801_C03_045M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>319</th>
<td>S0801_C03_046E</td>
<td>Estimate!!Female!!Workers 16 years and over wh...</td>
</tr>
<tr>
<th>320</th>
<td>S0801_C03_046M</td>
<td>Margin of Error!!Female MOE!!Workers 16 years ...</td>
</tr>
<tr>
<th>321</th>
<td>S0801_C03_047E</td>
<td>Estimate!!Female!!VEHICLES AVAILABLE!!Workers ...</td>
</tr>
<tr>
<th>322</th>
<td>S0801_C03_047M</td>
<td>Margin of Error!!Female MOE!!VEHICLES AVAILABL...</td>
</tr>
<tr>
<th>323</th>
<td>S0801_C03_048E</td>
<td>Estimate!!Female!!VEHICLES AVAILABLE!!Workers ...</td>
</tr>
<tr>
<th>324</th>
<td>S0801_C03_048M</td>
<td>Margin of Error!!Female MOE!!VEHICLES AVAILABL...</td>
</tr>
<tr>
<th>325</th>
<td>S0801_C03_049E</td>
<td>Estimate!!Female!!VEHICLES AVAILABLE!!Workers ...</td>
</tr>
<tr>
<th>326</th>
<td>S0801_C03_049M</td>
<td>Margin of Error!!Female MOE!!VEHICLES AVAILABL...</td>
</tr>
<tr>
<th>327</th>
<td>S0801_C03_050E</td>
<td>Estimate!!Female!!VEHICLES AVAILABLE!!Workers ...</td>
</tr>
<tr>
<th>328</th>
<td>S0801_C03_050M</td>
<td>Margin of Error!!Female MOE!!VEHICLES AVAILABL...</td>
</tr>
<tr>
<th>329</th>
<td>S0801_C03_051E</td>
<td>Estimate!!Female!!VEHICLES AVAILABLE!!Workers ...</td>
</tr>
<tr>
<th>330</th>
<td>S0801_C03_051M</td>
<td>Margin of Error!!Female MOE!!VEHICLES AVAILABL...</td>
</tr>
<tr>
<th>331</th>
<td>S0801_C03_052E</td>
<td>Estimate!!Female!!PERCENT ALLOCATED!!Means of ...</td>
</tr>
<tr>
<th>332</th>
<td>S0801_C03_052M</td>
<td>Margin of Error!!Female MOE!!PERCENT ALLOCATED...</td>
</tr>
<tr>
<th>333</th>
<td>S0801_C03_053E</td>
<td>Estimate!!Female!!PERCENT ALLOCATED!!Private v...</td>
</tr>
<tr>
<th>334</th>
<td>S0801_C03_053M</td>
<td>Margin of Error!!Female MOE!!PERCENT ALLOCATED...</td>
</tr>
<tr>
<th>335</th>
<td>S0801_C03_054E</td>
<td>Estimate!!Female!!PERCENT ALLOCATED!!Place of ...</td>
</tr>
<tr>
<th>336</th>
<td>S0801_C03_054M</td>
<td>Margin of Error!!Female MOE!!PERCENT ALLOCATED...</td>
</tr>
<tr>
<th>337</th>
<td>S0801_C03_055E</td>
<td>Estimate!!Female!!PERCENT ALLOCATED!!Time leav...</td>
</tr>
<tr>
<th>338</th>
<td>S0801_C03_055M</td>
<td>Margin of Error!!Female MOE!!PERCENT ALLOCATED...</td>
</tr>
<tr>
<th>339</th>
<td>S0801_C03_056E</td>
<td>Estimate!!Female!!PERCENT ALLOCATED!!Travel ti...</td>
</tr>
<tr>
<th>340</th>
<td>S0801_C03_056M</td>
<td>Margin of Error!!Female MOE!!PERCENT ALLOCATED...</td>
</tr>
<tr>
<th>341</th>
<td>S0801_C03_057E</td>
<td>Estimate!!Female!!PERCENT ALLOCATED!!Vehicles ...</td>
</tr>
<tr>
<th>342</th>
<td>S0801_C03_057M</td>
<td>Margin of Error!!Female MOE!!PERCENT ALLOCATED...</td>
</tr>
</tbody>
</table>


That is it!

No comments:

Post a Comment