RiyazAliM
Honored Contributor

Hi @kaushalshelat 

Ideally, `test.show()` should've thrown an error as test is the pandas dataframe now.

`.show()` is a spark df method and wouldn't work with pandas.

If you want to see a subset of the data try `.head()` or `.tail(n)` rather then `.show()`.

Thanks,

Riz

View solution in original post