# Feather & Arrow IPC Files


# Feather File

Feather (Apache Arrow IPC format) is fast for local analytics.


``` python
from great_docs import tbl_preview

tbl_preview('assets/employees.feather', show_all=True)
```


<table class="gt_table" data-quarto-disable-processing="true" data-quarto-bootstrap="false">
<thead>
<tr class="gt_heading">
<th colspan="5" class="gt_heading gt_title gt_font_normal"><div style="padding-top: 0; padding-bottom: 7px;">
<span class="gd-tbl-badge" style="background-color: #FFF3E0; color: #E65100; border: 1px solid #FFF3E0; margin-right: 8px;">Feather</span>Rows6Columns4
</div></th>
</tr>
<tr class="gt_col_headings">
<th class="gt_col_heading gt_columns_bottom_border gt_right" scope="col"></th>
<th id="name" class="gt_col_heading gt_columns_bottom_border gt_left" scope="col"><div>

name

<em>str</em>

</div></th>
<th id="department" class="gt_col_heading gt_columns_bottom_border gt_left" scope="col"><div>

department

<em>str</em>

</div></th>
<th id="salary" class="gt_col_heading gt_columns_bottom_border gt_right" scope="col"><div>

salary

<em>i64</em>

</div></th>
<th id="years" class="gt_col_heading gt_columns_bottom_border gt_right" scope="col"><div>

years

<em>i64</em>

</div></th>
</tr>
</thead>
<tbody class="gt_table_body">
<tr>
<td class="gt_row gt_right gd-tbl-rownum">0</td>
<td class="gt_row gt_left" style="max-width: 112px">Alice</td>
<td class="gt_row gt_left" style="max-width: 141px">Engineering</td>
<td class="gt_row gt_right" style="max-width: 109px">95000</td>
<td class="gt_row gt_right" style="max-width: 101px">5</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">1</td>
<td class="gt_row gt_left" style="max-width: 112px">Bob</td>
<td class="gt_row gt_left" style="max-width: 141px">Marketing</td>
<td class="gt_row gt_right" style="max-width: 109px">72000</td>
<td class="gt_row gt_right" style="max-width: 101px">3</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">2</td>
<td class="gt_row gt_left" style="max-width: 112px">Charlie</td>
<td class="gt_row gt_left" style="max-width: 141px">Engineering</td>
<td class="gt_row gt_right" style="max-width: 109px">105000</td>
<td class="gt_row gt_right" style="max-width: 101px">8</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">3</td>
<td class="gt_row gt_left" style="max-width: 112px">Diana</td>
<td class="gt_row gt_left" style="max-width: 141px">Sales</td>
<td class="gt_row gt_right" style="max-width: 109px">68000</td>
<td class="gt_row gt_right" style="max-width: 101px">2</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">4</td>
<td class="gt_row gt_left" style="max-width: 112px">Eve</td>
<td class="gt_row gt_left" style="max-width: 141px">Marketing</td>
<td class="gt_row gt_right" style="max-width: 109px">88000</td>
<td class="gt_row gt_right" style="max-width: 101px">6</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">5</td>
<td class="gt_row gt_left" style="max-width: 112px">Frank</td>
<td class="gt_row gt_left" style="max-width: 141px">Sales</td>
<td class="gt_row gt_right" style="max-width: 109px">71000</td>
<td class="gt_row gt_right" style="max-width: 101px">4</td>
</tr>
</tbody>
</table>


# Arrow IPC Extension

Files with `.arrow` or `.ipc` extensions are also read as Arrow IPC, but get the **Arrow** badge instead of Feather:


    'assets/employees.arrow'


``` python
tbl_preview('assets/employees.arrow', show_all=True)
```


<table class="gt_table" data-quarto-disable-processing="true" data-quarto-bootstrap="false">
<thead>
<tr class="gt_heading">
<th colspan="5" class="gt_heading gt_title gt_font_normal"><div style="padding-top: 0; padding-bottom: 7px;">
<span class="gd-tbl-badge" style="background-color: #E8EAF6; color: #283593; border: 1px solid #E8EAF6; margin-right: 8px;">Arrow</span>Rows6Columns4
</div></th>
</tr>
<tr class="gt_col_headings">
<th class="gt_col_heading gt_columns_bottom_border gt_right" scope="col"></th>
<th id="name" class="gt_col_heading gt_columns_bottom_border gt_left" scope="col"><div>

name

<em>str</em>

</div></th>
<th id="department" class="gt_col_heading gt_columns_bottom_border gt_left" scope="col"><div>

department

<em>str</em>

</div></th>
<th id="salary" class="gt_col_heading gt_columns_bottom_border gt_right" scope="col"><div>

salary

<em>i64</em>

</div></th>
<th id="years" class="gt_col_heading gt_columns_bottom_border gt_right" scope="col"><div>

years

<em>i64</em>

</div></th>
</tr>
</thead>
<tbody class="gt_table_body">
<tr>
<td class="gt_row gt_right gd-tbl-rownum">0</td>
<td class="gt_row gt_left" style="max-width: 112px">Alice</td>
<td class="gt_row gt_left" style="max-width: 141px">Engineering</td>
<td class="gt_row gt_right" style="max-width: 109px">95000</td>
<td class="gt_row gt_right" style="max-width: 101px">5</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">1</td>
<td class="gt_row gt_left" style="max-width: 112px">Bob</td>
<td class="gt_row gt_left" style="max-width: 141px">Marketing</td>
<td class="gt_row gt_right" style="max-width: 109px">72000</td>
<td class="gt_row gt_right" style="max-width: 101px">3</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">2</td>
<td class="gt_row gt_left" style="max-width: 112px">Charlie</td>
<td class="gt_row gt_left" style="max-width: 141px">Engineering</td>
<td class="gt_row gt_right" style="max-width: 109px">105000</td>
<td class="gt_row gt_right" style="max-width: 101px">8</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">3</td>
<td class="gt_row gt_left" style="max-width: 112px">Diana</td>
<td class="gt_row gt_left" style="max-width: 141px">Sales</td>
<td class="gt_row gt_right" style="max-width: 109px">68000</td>
<td class="gt_row gt_right" style="max-width: 101px">2</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">4</td>
<td class="gt_row gt_left" style="max-width: 112px">Eve</td>
<td class="gt_row gt_left" style="max-width: 141px">Marketing</td>
<td class="gt_row gt_right" style="max-width: 109px">88000</td>
<td class="gt_row gt_right" style="max-width: 101px">6</td>
</tr>
<tr>
<td class="gt_row gt_right gd-tbl-rownum">5</td>
<td class="gt_row gt_left" style="max-width: 112px">Frank</td>
<td class="gt_row gt_left" style="max-width: 141px">Sales</td>
<td class="gt_row gt_right" style="max-width: 109px">71000</td>
<td class="gt_row gt_right" style="max-width: 101px">4</td>
</tr>
</tbody>
</table>
