0

Does anybody know how to convert ibis (Impala) table (<class 'ibis.expr.types.TableExpr'>) into pandas dataframe?

Actually I want to merge (join) ibis table & pandas dataframe.

Thank you!!

thaavik
  • 3,257
  • 2
  • 18
  • 25
ragesz
  • 9,009
  • 20
  • 71
  • 88

1 Answers1

4

You can fetch the table into a data frame using execute:

df1 = table.limit(None).execute()

Then merge as normal:

pd.concat([df1, df2])
pteehan
  • 807
  • 9
  • 19