zeppelin with sparkr is not displaying dataframe as table
Asked Answered
S

1

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?

Suppositive answered 5/8, 2016 at 0:14 Comment(4)
I have the same problem? Any idea?Paresh
Same problem, any updates on this?Nephew
Possible way is to register data frame as temp table registerTempTable(dataframe, "temp_table") and use sql interpreter to display %sql select * from temp_tableEllersick
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: zeppelin.apache.org/docs/0.6.2/interpreter/python.htmlHaematoblast
C
1

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

Costanzo answered 10/8, 2018 at 17:11 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.