4

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.

JAdel
  • 1,309
  • 1
  • 7
  • 24

1 Answers1

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