Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

zeppelin with sparkr is not displaying dataframe as table

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?

like image 394
Chris Snow Avatar asked Aug 05 '16 00:08

Chris Snow


1 Answers

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

like image 156
nate Avatar answered Sep 19 '22 17:09

nate