Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2025 03:11 AM
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