0

I have a set of values to return as output from my databricks notebook. Can anyone sugggest a way to do that in an efficient and easy way?

Samyak Jain
  • 155
  • 1
  • 2
  • 8

2 Answers2

0

You can only export a string, but you can organize its content as you want. You could export a JSON as a string, containing your different values. The output is then parsed to.retrieve the different values.

Axel R.
  • 1,141
  • 7
  • 22
0

You could run said notebook within your current notebook using: %run <path to your notebook>. This will, however, import all variables etc from that notebook.

Papa_Helix
  • 586
  • 3
  • 9