Hello Everyone,

I have been trying to run *koalas* on both pyspark and pyCharm IDE.

When I run

df = koalas.DataFrame({‘x’: [1, 2], ‘y’: [3, 4], ‘z’: [5, 6]})
df.head(5)

I don't get the data back instead, I get an object.
<databricks.koalas.frame.DataFrame object at 0x11bc41438>

I thought df.head can be used to achieve this.

Can anyone guide me on how we can print something on the terminal?
Something similar to df.show() in spark.

Reply via email to