Is there any way in Databricks to plot more than 1000 rows with the built in visualization?
I tried using limit()
function, but it still shows only the first 1000.
Asked
Active
Viewed 1,624 times
4

JAdel
- 1,309
- 1
- 7
- 24
1 Answers
3
No, it's not possible right now. limit
won't help because it limits the amount of data in the dataframe itself, but display
function has its own parameters.

Alex Ott
- 80,552
- 8
- 87
- 132
-
- If you really want to see more than 1000 rows result , @Alex's such a fantastic answer here : https://stackoverflow.com/questions/68093283/databricks-truncating-results-to-1000-columns – Karthikeyan Rasipalay Durairaj Oct 16 '21 at 23:08