英文:
How to avoid new line when the data is shown
问题
有没有办法避免数据显示时出现新行:
为了在同一行上显示所有内容,使其易于阅读。
英文:
I want to know if is there a way to avoid a new line when the data is shown like this:
In order to show all in the same line with a crossbar, and easy to read.
答案1
得分: 1
垂直显示 - 展示
sparkDF.show(vertical=True, truncate=False)
英文:
You can display your dataframe vertically as well if that helps you
Vertical - Show
sparkDF.show(vertical=True,truncate=False)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论