# Workflow\.table

### Workflow.<mark style="color:purple;">table</mark>(*name*) → [Table](https://docs.redivis.com/api/client-libraries/redivis-python/reference/table)

Create a reference to the table within a workflow.

### **Parameters:**

**`name` :&#x20;*****str*** \
The [scoped reference of the table](https://docs.redivis.com/api/referencing-resources), unique within the workflow.&#x20;

### **Returns:**

[**Table**](https://docs.redivis.com/api/client-libraries/redivis-python/reference/table)

### Examples

```python
workflow = redivis.user("imathews").workflow("example_workflow_climate_analysis")

table = workflow.table('compute_annual_precipitation_output:m7k8')
table.to_pandas_dataframe()
# 	id	        year	    annual_precip
# 0	CA0023026HN	2003	    2925.0
# ...
```
