8

The zeppelin R interpreter documentation states:

If you return a data.frame, Zeppelin will attempt to display it using Zeppelin's built-in visualizations.

This can be seen in the documentation example:

enter image description here

However, when I attempt to run the same R commands from my zeppelin 0.6.0 notebook, I see the following:

enter image description here

Any idea why I'm not seeing the tabular output?

Chris Snow
  • 23,813
  • 35
  • 144
  • 309
  • I have the same problem? Any idea? – ManuParra Nov 10 '16 at 00:16
  • Same problem, any updates on this? – michalrudko Apr 06 '17 at 00:58
  • Possible way is to register data frame as temp table `registerTempTable(dataframe, "temp_table")` and use sql interpreter to display `%sql select * from temp_table` – Arun Gunalan May 04 '17 at 04:28
  • Do you have tried to use `z.show(varname)` in order to map the dataframe from the interpreter to this inbuilt plot function. Al least that's the way to do within the python interpreter: https://zeppelin.apache.org/docs/0.6.2/interpreter/python.html – tardis Aug 23 '17 at 06:15

1 Answers1

1

You need to register a temp table and then do a select * from temp_table, just as @Arun Gunalan suggested.

nate
  • 1,172
  • 1
  • 11
  • 26