#!/usr/bin/env python # coding: utf-8 # # Pandas # # Export a TF dataset as Pandas # In[1]: from tf.app import use # In[2]: A = use("CLARIAH/wp6-ferdinandhuyck:clone", checkout="clone", hoist=globals()) # In[3]: c1 = F.otype.s("chunk")[100] c1 # In[4]: A.plain(c1) # In[5]: A.exportPandas(inTypes="") # In[ ]: